From 4a658aec95027fb71bbd2b48feb895586d85dc09 Mon Sep 17 00:00:00 2001 From: Luna Mendes Date: Tue, 21 Aug 2018 05:17:24 -0300 Subject: [PATCH] README: change from pipenv shell to pipenv run Do we really need the shell as an extra step? --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2037582..9765d07 100644 --- a/README.md +++ b/README.md @@ -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 ```