The application provides all basic functionality required for Personal accounting.
- Python
- Django
- Sqlite
1. Python
2. pip
- install required packages using requirements.txt
pip install -r requirements.txt
- migrate models to database using
python manage.py migrate
or
python3 manage.py migrate
(in case you have multiple versions of python installed) - add superuser using
python manage.py createsuperuser
or
python3 manage.py createsuperuser
(in case you have multiple versions of python installed) - run application using command
python manage.py runserver
or
python3 manage.py runserver
(in case you have multiple versions of python installed)