Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sukhbinder/django-exp
DJANGO expense an app to manage housing society's expenses
https://github.com/sukhbinder/django-exp
Last synced: 2 days ago
JSON representation
DJANGO expense an app to manage housing society's expenses
- Host: GitHub
- URL: https://github.com/sukhbinder/django-exp
- Owner: sukhbinder
- License: mit
- Created: 2021-03-16T13:59:05.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-09T04:48:20.000Z (over 3 years ago)
- Last Synced: 2024-11-21T23:53:29.033Z (2 months ago)
- Language: JavaScript
- Size: 6.58 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django Exp
A django app i developved for maintaining household expenses. I have primariliy used it to maintain and record expenses for my housing society.# Install
pip install django-exp# How to use
Create a new django project
```bash
django-admin startproject expensesite
```
In the **settings.py**
```python
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# Add these two lines
'rest_framework',
'exp',
]```
# Demo
![](img/expense_slow.gif)