Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 665 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 665 Bytes

xpense

Expense tracker

Screenshot

Personal project for learning flask. Most of the structure is heavily based on The Flask Mega-Tutorial

Quickstart

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