diff options
author | Frederick Muriuki Muriithi | 2022-06-20 11:57:32 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-06-20 11:58:10 +0300 |
commit | e3834ca0fb25a6bffe935391b24fedbec5bf25e8 (patch) | |
tree | 49220615e81acd267e4815f3ebd4f8355b5e7c2b /README.md | |
parent | 52b591d5b5201628f33043e62e5731ad919ee1b9 (diff) | |
download | genenetwork3-e3834ca0fb25a6bffe935391b24fedbec5bf25e8.tar.gz |
Update README: export env variables explicitly
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -118,7 +118,9 @@ mypy . To spin up the server on its own (for development): ```bash -env FLASK_DEBUG=1 FLASK_APP="main.py" flask run --port=8080 +export FLASK_DEBUG=1 +export FLASK_APP="main.py" +flask run --port=8080 ``` And test with |