A very simple to-do list web application created using Flask, SQLAlchemy, WTForms and Jinja2.
To install the required dependencies:
$ pip3 install -r requirements.txt
In order for the application to run, set your environment variables for DATABASE_URI and SECRET_KEY.
DATABASE_URI is in the format of 'mysql+pymysql://username:password@databaseinstanceip/databasename' and SECRET_KEY can be anything.
After the variables are set, initialise an empty table within the database by running:
$ python3 create.py
To run the app:
$ flask run



