Create python environment named .env (as .env is added to .gitignore)
python3 -m venv .envActivate the environment
source .env/bin/activateInstall the required packages
pip install -r requirements.txtRun the server
python3 -m flask --app app.py runif changes are made to the requirements.txt file, run the following command to update the packages then push
pip freeze > requirements.txtDocker Image: docker pull sankhadiproy/leaf:latest