mirror of https://gitlab.com/litecord/litecord.git
README: change from pipenv shell to pipenv run
Do we really need the shell as an extra step?
This commit is contained in:
parent
85d4f9e593
commit
4a658aec95
|
|
@ -30,9 +30,8 @@ $ pipenv install --dev
|
||||||
## Running
|
## Running
|
||||||
|
|
||||||
```
|
```
|
||||||
# drop into the virtualenv's shell
|
# hypercorn will by default bind to 0.0.0.0:5000, change that address
|
||||||
$ pipenv shell
|
# with the -b option (e.g -b 0.0.0.0:6969).
|
||||||
|
# use '--access-log -' to show logs on stdout.
|
||||||
# boot litecord
|
$ pipenv run hypercorn run:app
|
||||||
$ hypercorn -b 0.0.0.0:5000 run:app
|
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue