https://github.com/kumaraditya303/django-rest-accounts
Django Rest Accounts is a Django reusable app built with Django Rest Framework for easier account management for REST app.
https://github.com/kumaraditya303/django-rest-accounts
django django-application django-authentication django-rest-framework
Last synced: 5 months ago
JSON representation
Django Rest Accounts is a Django reusable app built with Django Rest Framework for easier account management for REST app.
- Host: GitHub
- URL: https://github.com/kumaraditya303/django-rest-accounts
- Owner: kumaraditya303
- License: mit
- Created: 2020-10-08T05:46:06.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-11T06:11:59.000Z (about 4 years ago)
- Last Synced: 2025-02-06T17:52:10.567Z (5 months ago)
- Topics: django, django-application, django-authentication, django-rest-framework
- Language: Python
- Homepage:
- Size: 146 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README

[](https://hits.seeyoufarm.com)


# Django Rest Accounts
Django Rest Accounts is a Django app built on Django Rest Framework for easier account management for REST API.
## Quick Start
- Add `accounts` to your INSTALLED_APPS like this::
```python
INSTALLED_APPS = [
...,
"rest_framework",
"rest_framework.authtoken",
"accounts",
]
```- Include the accounts URLconf in your project urls.py like this::
```python
path('accounts/', include('accounts.urls')),
```- In your settings.py set the
```python
AUTH_USER_MODEL = "accounts.User"
```- Run `python manage.py migrate` to create authentication models.
- Start the development server and visit http://127.0.0.1:8000
- URL Configuration
| URLConf | |
| :------: | :--------: |
| LOGIN | /login/ |
| REGISTER | /register/ |
| LOGOUT | /logout/ |# Project made and maintained by Kumar Aditya