diff options
-rw-r--r-- | README.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -48,3 +48,11 @@ Running mypy(type-checker): ```bash mypy . ``` + +#### Running the flask app + +To spin up the server: + +```bash +env FLASK_DEBUG=1 FLASK_APP="main.py" flask run --port=8080 +``` |