Fix bad indent and a few actual errors in README.md
This commit is contained in:
parent
9586f59592
commit
59e40b551b
1 changed files with 24 additions and 23 deletions
|
@ -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
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue