Expense tracker
Personal project for learning flask. Most of the structure is heavily based on The Flask Mega-Tutorial
Create a Python virtual environment and install the dependencies in requirements.txt
# Create and activate venv
python -m pip install --upgrade pip
pip install -r requirements.txt
Upgrade database, import some transactions from example and run server
flask db upgrade
python import.py
flask run