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