https://github.com/civilmachines/drf-account
Accounts APP for Django REST Framework with API Views
https://github.com/civilmachines/drf-account
django django-application django-rest-api django-rest-framework django-rest-framework-addon
Last synced: 2 months ago
JSON representation
Accounts APP for Django REST Framework with API Views
- Host: GitHub
- URL: https://github.com/civilmachines/drf-account
- Owner: civilmachines
- License: gpl-3.0
- Created: 2018-07-17T10:55:53.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-23T07:45:02.000Z (almost 7 years ago)
- Last Synced: 2025-03-26T02:01:42.234Z (3 months ago)
- Topics: django, django-application, django-rest-api, django-rest-framework, django-rest-framework-addon
- Language: Python
- Homepage:
- Size: 26.4 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django REST Framework - Account
**Account APP for Django REST Framework with API Views.**
`DRF Account` is a Django app that for maintaining Account Information. This app is majorly being used in
[Vitartha's](https://vitartha.com) product [Hisab Kitab](https://hisabkitab.in)#### Contributors
- **[Civil Machines Technologies Private Limited](https://github.com/civilmahines)**: For providing me platform and
funds for research work. This project is hosted currently with `CMT` only.
- [Himanshu Shankar](https://github.com/iamhssingh): The app was initiated and worked upon majorly by Himanshu. This app
is currently in use in various other django projects that are developed by him.**We're looking for someone who can contribute on docs part**
#### Installation
- Download and Install via `pip`
```
pip install drf_account
```
or
Download and Install via `easy_install`
```
easy_install drf_account
```
- Add `drf_account` in `INSTALLED_APPS`
```
INSTALLED_APPS = [
...
'drf_account',
...
]
```
- Include urls of `drf_account` in `urls.py`
```
urlpatterns = [
...
path('/api/account/', include('drf_account.urls')),
...
]# or
urlpatterns = [
...
url(r'api/account/', include('drf_account.urls')),
...
]
```- Finally, run `migrate` command
```
python manage.py migrate drf_account
```