From fd5d06e5c236546de678f32ba02192a7a2c4fd0c Mon Sep 17 00:00:00 2001 From: Tural Date: Tue, 9 Jun 2020 17:17:57 +0400 Subject: [PATCH] update README file --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 52b913a..a2ec9a5 100644 --- a/README.md +++ b/README.md @@ -43,11 +43,12 @@ Right after your choice do the followings accrodingly: for fastapi: -pipenv shell +source .venv/bin/activate + -export APP_SETTINGS=dev +export settings=dev -pip install -requirements.txt or pipenv install +pip install -r requirements.txt uvicorn app.main:app --reload --port 8007 @@ -55,7 +56,7 @@ for flask: source .venv/bin/activate -pip install -requirements.txt +pip install -r requirements.txt export FLASK_APP=app.app