Skip to content

Strongground/Simple-Budget

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Budget App

Add transactions to accounts, categorize and visualize spendings and earnings, with multiple users/accounts possible.

Easy development start

Get interactive shell for API test running:

$> python3 manage.py shell
>>> from savings.models import Transaction, Profile, Account, Bank, Category

Start server with auto-polling:

$> python3 manage.py runserver

After model change, create and apply migrations

$> python3 manage.py makemigrations
$> python3 manage.py migrate