Skip to content

sibtc/simple-django-login

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What's this repository about?

Example created for the blog post How to Use Django's Built-in Login System at simpleisbetterthancomplex.com.

How do I run this project locally?

1. Clone the repository:

git clone https://github.com/sibtc/simple-django-login.git

2. Run migrations:

python manage.py migrate

3. Create a user:

python manage.py createsuperuser

4. Run the server:

python manage.py runserver

5. And open 127.0.0.1:8000/login in your web browser.