A super budget management system by super developers
First of all, of course, you need Python on your system. Further there is a list of python packages that are needed to run this project.
- Django
- mysqlclient
Note about installing mysqlclient: There are may be some difficulties when you're trying to
run pip install mysqlclient. On linux (Ubuntu is tested as well) you need to install libmysqlclient-dev,
and -dev version of python and maybe libssl-dev. On Windows you need to follow This instructions
- Clone the latest version of
developmentbranch from repo. cdto the directory with filemanage.py- Execute command
python manage.py migrate(Needed only on first run or when errors about migrations are shown) - Run
python manage.py runserver - Open
127.0.0.1:8000in browser.
If you're using linux, maybe you'll need to replace python command with python3.