Skip to content

andyrhman/django-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Auth

Introduction

This is my 1st project of django web framework, i am so exited to learn this awesome python api framework.

First Time Set Up & Configuration

Install the Django Web Framework:

pip install django
pip install djangorestframework   
pip install django-filter   
pip install psycopg2 # For database
pip install python-decouple # Installing python-decouple for .env:

Create the directory:

mkdir django-auth
django-admin startproject app .
django-admin startapp core

Go To settings.py and add this:

INSTALLED_APPS = [
  // other lists,
  "rest_framework",
  "core"
]

Features

List the main features of your autth server. For example:

  • User authentication and authorization
  • Auth Token
  • 2FA Authentication

Installation

Provide step-by-step instructions for installing and setting up the project locally. Include commands and any additional configurations. For example:

git clone https://github.com/andyrhman/node-auth.git
cd node-auth
pip install -t requirments.txt

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published