https://github.com/toastdriven/django-budget
A personal budgeting application for use with Django.
https://github.com/toastdriven/django-budget
Last synced: 11 months ago
JSON representation
A personal budgeting application for use with Django.
- Host: GitHub
- URL: https://github.com/toastdriven/django-budget
- Owner: toastdriven
- License: mit
- Created: 2008-11-05T06:46:55.000Z (over 17 years ago)
- Default Branch: master
- Last Pushed: 2012-11-28T02:55:11.000Z (over 13 years ago)
- Last Synced: 2025-06-07T16:54:56.204Z (11 months ago)
- Language: JavaScript
- Homepage:
- Size: 209 KB
- Stars: 47
- Watchers: 5
- Forks: 27
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
=============
django-budget
=============
``django-budget`` is a simple budgeting application for use with Django. It is
designed to manage personal finances. We used it to replace a complicated Excel
spreadsheet that didn't retain all the details we wanted.
It was implemented in Django based on familiarity, quick time to implement and
the premise that it could be accessible everywhere. In practice, we run this
locally (NOT on a publicly accessible website).
A Note About Security
=====================
It is recommended that anyone using this application add further security by
either protecting the whole app with HTTP Auth, wrap the views with the
``login_required`` decorator, run it on a local machine or implement similar
protections. This application is for your use and makes no assumptions about
how viewable the data is to other people.
Requirements
============
``django-budget`` requires:
* Python 2.3+
* Django 1.0+
Installation
============
* Either copy/symlink the budget app into your project or place it somewhere on
your ``PYTHONPATH``.
* Add the ``budget.categories``, ``budget.transactions`` and ``budget`` apps to
your ``INSTALLED_APPS``.
* Run ``./manage.py syncdb``.
* Add ``(r'^budget/', include('budgetproject.budget.urls')),`` to your
``urls.py``.
About The Templates/Media
=========================
The templates provided are for reference only and ARE NOT SUPPORTED! Please do
not submit bugs or feature requests for them. You will likely have to create
your own templates or at least heavily modify these templates to adapt them to
your own uses. Everything within the templates is either original or MIT
licensed.