README: change from pipenv shell to pipenv run

Do we really need the shell as an extra step?
This commit is contained in:
Luna Mendes 2018-08-21 05:17:24 -03:00
parent 85d4f9e593
commit 4a658aec95
1 changed files with 4 additions and 5 deletions

View File

@ -30,9 +30,8 @@ $ pipenv install --dev
## Running
```
# drop into the virtualenv's shell
$ pipenv shell
# boot litecord
$ hypercorn -b 0.0.0.0:5000 run:app
# hypercorn will by default bind to 0.0.0.0:5000, change that address
# with the -b option (e.g -b 0.0.0.0:6969).
# use '--access-log -' to show logs on stdout.
$ pipenv run hypercorn run:app
```