This is really simple application to help you track your expenses, monthy.
-
Clone repo
-
Install requirements via PIP
pip install -r requirements.txt
- Run application
python manage.py migrate
python manage.py collectstatic
python manage.py runserver
of course it's good idea to run it through Nginx or something similar
You have to add entry to CRON so you can receive Expense Reports eg. (don't forget to set SHELL to bash so you can source)
SHELL=/bin/bash
* * * * * source /home/user/.bashrc && source /home/user/django/bin/activate && /home/user/django/bin/python /home/user/django/expenses/manage.py runcrons >> /home/user/django/expenses/cronjob.log
Also don't forget to fill your .env file