Fix bad indent and a few actual errors in README.md

This commit is contained in:
Danielle McLean 2018-06-12 12:16:18 +10:00
parent 9586f59592
commit 59e40b551b
Signed by: 00dani
GPG Key ID: 8EB789DDF3ABD240
1 changed files with 24 additions and 23 deletions

View File

@ -56,7 +56,7 @@ If you're running in production, I'd recommend [Gunicorn][], which is already pa
of lemoncurry's Pipfile. Ensure you run Gunicorn behind a secure reverse proxy,
such as [Nginx][].
If you're running in development, the usual Django `run_server` command should
If you're running in development, the usual Django `runserver` command should
be fine.
[Gunicorn]: https://gunicorn.org/
@ -68,12 +68,13 @@ be fine.
# Installation
Clone the repo, and then install both Python and Node dependencies:
Clone the repo recursively - since it uses Git submodules - and then install
both Python and Node dependencies.
```shellsession
$ git clone https://git.00dani.me/00dani/lemoncurry
$ git clone --recursive https://git.00dani.me/00dani/lemoncurry
$ cd lemoncurry
$ pipenv install
$ pipenv install --dev
$ yarn install
```