Removed words that minimize involved difficulty, closes #1089

This commit is contained in:
Simon Willison 2020-11-12 12:07:19 -08:00
commit 5eb8e9bf25
10 changed files with 19 additions and 19 deletions

View file

@ -19,7 +19,7 @@ General guidelines
Setting up a development environment
------------------------------------
If you have Python 3.6 or higher installed on your computer (on OS X the easiest way to do this `is using homebrew <https://docs.python-guide.org/starting/install3/osx/>`__) you can install an editable copy of Datasette using the following steps.
If you have Python 3.6 or higher installed on your computer (on OS X the quickest way to do this `is using homebrew <https://docs.python-guide.org/starting/install3/osx/>`__) you can install an editable copy of Datasette using the following steps.
If you want to use GitHub to publish your changes, first `create a fork of datasette <https://github.com/simonw/datasette/fork>`__ under your own GitHub account.
@ -27,7 +27,7 @@ Now clone that repository somewhere on your computer::
git clone git@github.com:YOURNAME/datasette
If you just want to get started without creating your own fork, you can do this instead::
If you want to get started without creating your own fork, you can do this instead::
git clone git@github.com:simonw/datasette
@ -47,9 +47,9 @@ Once you have done this, you can run the Datasette unit tests from inside your `
pytest
To run Datasette itself, just type ``datasette``.
To run Datasette itself, type ``datasette``.
You're going to need at least one SQLite database. An easy way to get started is to use the fixtures database that Datasette uses for its own tests.
You're going to need at least one SQLite database. A quick way to get started is to use the fixtures database that Datasette uses for its own tests.
You can create a copy of that database by running this command::