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

Latest commit

 

History

History
30 lines (20 loc) · 765 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 765 Bytes

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