Skip to main content

A reusable Django Rest Accounts apps built on Django Rest Framework for fast REST development.

Project description

Travis CI Hits

Django Rest Accounts

Django Rest Accounts is a Django app built on Django Rest Framework for easier account management for REST apps.

Quick Start

  • Add accounts to your INSTALLED_APPS like this::
INSTALLED_APPS = [
    ...,
    'rest_framework',
    'rest_framework.authtoken',
    "accounts",
]
  • Include the accounts URLconf in your project urls.py like this::
path('accounts/', include('accounts.urls')),
  • In your settings.py set the
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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

djangorestaccounts-0.1.2.tar.gz (8.7 kB view hashes)

Uploaded Source

Built Distribution

djangorestaccounts-0.1.2-py3-none-any.whl (7.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page