An open API service indexing awesome lists of open source software.

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

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
```