Skip to content

PranavAchrekar/ToDoApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ToDo_App made-with-python

A Simple ToDo Web Application using Django Framework

Features:

  • This todo app is designed using function based views in django.
  • User can perform basic operations like.
    • Create, Edit, Update, Delete Tasks
    • Can mark and view tasks as Completed/Incomplete.
  • User Authentication
    • Multi-User login.
    • Register, Login, Logout.
    • Edit User profile.
    • Change Password.

Steps to follow for first time use open terminal/command prompt and execute this below commands.

  1. Create a virtual environment.
   py -m venv env
  1. Activate virtual environment
   .\env\Scripts\activate
  1. Install all the dependencies.
   pip install -r requirements.txt
  1. This will convert model class into sql statements.
   python manage.py makemigrations
  1. To execute sql statements generated by make migrations. This will create the tables in the Database.
   python manage.py migrate
  1. Create an admin user for admin panel.
   python manage.py createsuperuser.

Preview!

ToDo_Web_App.webm