AI-powered personal finance platform
Spendly is a simple personal finance application that helps users track expenses, manage budgets, and gain smart financial insights through a clean and unified experience.
# create and activate virtual environment
python -m venv venv
venv\Scripts\activate # Windows
# install dependencies
pip install -r requirements.txt
# apply database migrations
python manage.py migrate
# run development server
python manage.py runserver