Contains code upto Part 3 of Make My Vibe Medium article. Follow along here: https://medium.com/@treshank.prasad/make-my-vibe-c46c4b302832
# Create a venv
python3 -m venv venv
# Activate the venv
source venv/bin/activate
# Install the requirements
pip install -r requirements.txt
# Run the server
flask run