ToDo list app in Django
- Tags
- Filter tasks
- Repeating tasks
- Remainder
- Multiple lists
- Multiple users
- Sharing lists
- JS frontend
- Clone this repository and go to repository folder
git clone https://github.com/danielkurek/todoListDjango
cd todoListDjango
-
Install required packages
python -m pip install -r requirements.txt
-
Initialize database
python manage.py migrate
-
Start server
python manage.py runserver
If you want to use admin console, you have to setup superuser:
python manage.py createsuperuser
Enter your desired username and press enter.
Username: admin
Then enter your desired email address:
Email address: [email protected]
Then you will be prompted to enter your desired password:
Password: ********
Password (again): ********
Superuser created successfully.