Skip to content

ctrlz-blog/django-basic-todo-list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-todo

A simple to-do list app built with Django.

Tutorials

How to use this repository

  1. Create a virtual environment
python3 -m venv venv

Activate environment

source venv/bin/activate
  1. Install requirements
pip install -r requirements.txt
  1. Create a .env file in mysite directory

Add the following code:

SECRET_KEY=yoursecretkeywhichwillbemoresecurethanthisone
  1. Test the server runs
python manage.py runserver
  1. Migrate
python manage.py migrate
  1. Create a superuser
python manage.py createsuperuser

Releases

No releases published

Packages

No packages published