Skip to content

Rakib01/django_login_system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django login system

How to run in linux:

Download or clone the reposatory:

git clone https://github.com/Rakib01/django_login_system.git

Go to project folder:

cd django_login_system

Create a Virtual Environment:

python3 -m venv venv

Activate Virtual Environment:

source venv/bin/activate

Install Requirements Package:

pip install -r requirements.txt

Migrate Database:

python manage.py migrate

Create Super User:

python manage.py createsuperuser

Finally Run :

python manage.py runserver

It will start a local server on 'http://127.0.0.1:8000'

then go to http://127.0.0.1:8000/admin to accesss your administrations.