Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ajpocus/djac
A double entry accounting app for Django.
https://github.com/ajpocus/djac
Last synced: 27 days ago
JSON representation
A double entry accounting app for Django.
- Host: GitHub
- URL: https://github.com/ajpocus/djac
- Owner: ajpocus
- License: other
- Created: 2011-08-31T17:55:39.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-09-26T01:01:49.000Z (over 13 years ago)
- Last Synced: 2024-04-08T18:29:13.836Z (9 months ago)
- Language: Python
- Homepage:
- Size: 310 KB
- Stars: 5
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**OVERVIEW**
Djac is a double entry accounting app for Django. Included are the standalone accounts app, and many example views and templates.
**REQUIREMENTS**
Djac uses:- Django
- PostgreSQL
- South
- Django Debug ToolbarPostgreSQL can usually be installed through your distro's package manager (though you can change the DB in settings.py to whatever you want). The Python dependencies are best installed through pip, as in:
`$ pip install psycopg2 south django-debug-toolbar`
I strongly recommend using virtualenv to create a separate environment.
**USAGE**
Djac has a usable web interface that runs on the Django development server. You can start it with the usual:
`$ ./manage.py runserver`
The interface can be found at http://localhost:8000/accounts. You can also use the accounts app on its own; there are a few methods on the Account model to add credits and debits, and get a running balance list.
**AUTHORS**
Djac is written by Austin Pocus, copright 2011, under the BSD license. Details may be found in LICENSE.