To run this project, all you need to do is the following in a fresh clone:
# Download the needed libraries (flask, sqlite)
pip install flask pysqlite3
# Set the app, initialize the database, and finally run main.py
export FLASK_APP=main.py
flask initdb
flask run
And you're done!