Skip to content

sabarishr-dev/To-do-App

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🗒️ To-do-App

🛧 Simple To-do app using Django

🛧 Authentication System [User Registration and Login],

🛧 User can Create, Read, Update, Delete his Tasks .

hompage task

🛧 Users can allows for log out and re-login

logs

#############-----------------SETUP-----------------------###################

1.Make sure you're installed Python

# For windows download from Official website either MicrosoftStore .
# For Linux High chances to already pre-installed , if not use this command, 
     $ sudo apt install python3
#For Mac Download the installer package from Python's official website .

2.Make sure you're installed Django

 # Windows - pip install django 
 # linux - $ sudo apt install python3-django
 # check django version . $ django-admin --verion

3.Download the project src and Extract as Well ! .

4.Go to Manage.py Located Path

path

5.You Need to follow this commands [ For Database Migrations ]

migrate

 # Windows - python manage.py makemigrations
             python manage.py migrate
 # Linux - $ python3 manage.py makemigrations
           $ python3 manage.py migrate  

6.Create Super User

spruser

  # To Create a SuperUser ,
      # Windows - python manage.py createsuperuser
      # Linux - $ python3 manage.py createsuperuser

  ! Super User is a administrator, which means controlled everything in Admin Panel
      
  ! You need to enter your admin's username and Email , My case just for test
  
  ! Set Password and Re-Enter Password and Enter "Y" to continue you credientials !. 

#####-----Everything Is Done !-----######

7.To start the server / run this project

run

# For windows - python manage.py runserver [you may include your port no] { python manage.py runserver 3300 }

         ! Django Defaulty run projects in [ PORT 8000 ]

# For Linux - $ python3 manage.py runserver [you can specify port if you want]

8.Open your Browser Enter / copy & Paste URL given by Django

loginpage

registerpage

screen

Thank You 🤝 !

About

Simple To-do app using Django

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 57.0%
  • CSS 24.0%
  • HTML 19.0%