Project setup / how to run the project. (python)
Create python virtual environment
python3 -m venv venv
Activate python virtual environment and instll project requirements
source venv/bin/activate
pip install -r requirements.txt
Run project
source venv/bin/activate # remember to activate the environment
flask run --debug
Visit http://127.0.0.1:5000