Todo App website to demonstrate Django CRUD operations.
- Clone this repository.
- Open settings.py -> empty the ALLOWED_HOSTS list and set DEBUG=True
- Open command line inside the project folder.
- 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
- Open http://localhost:8000/ in your browser
You can deploy this app yourself to Heroku to play with.