- Python 3.7
- pipenv - used for virtual enviroment management
- flask
- blinker
- simplejson
- python-dotenv
- watchdog
- flask-wtf
pipenv install <dependencies>You must be in virtual environment to run the flask app
pipenv shellexport FLASK_APP=<flask_app_name>.py
export FLASK_DEBUG=1 #sets it to debug, no need to stop server to see updated changes
flask runif __name__ == 'main':
app.run(debug=True)