Skip to content
This repository has been archived by the owner on Apr 2, 2022. It is now read-only.
/ todo-django Public archive

Todo App webapp to demonstrate Django CRUD operations.

Notifications You must be signed in to change notification settings

PBL-Archive/todo-django

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Todo Django

Todo App website to demonstrate Django CRUD operations.

Screenshots

Demonstration

Setup

  1. Clone this repository.
  2. Open settings.py -> empty the ALLOWED_HOSTS list and set DEBUG=True
  3. Open command line inside the project folder.
  4. Run the commands below in cmd -
venv/Scripts/activate

pip install -r requirements.txt

python manage.py makemigrations

python manage.py migrate

python manage.py runserver
  1. Open http://localhost:8000/ in your browser

Deploy to Heroku

You can deploy this app yourself to Heroku to play with.

Deploy