Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 952 Bytes

README.md

File metadata and controls

44 lines (35 loc) · 952 Bytes

ToDo list app in Django

Features

  • Tags
  • Filter tasks
  • Repeating tasks
  • Remainder
  • Multiple lists
  • Multiple users
  • Sharing lists
  • JS frontend

Instalation

  1. Clone this repository and go to repository folder
    git clone https://github.com/danielkurek/todoListDjango
    cd todoListDjango
  1. Install required packages

    python -m pip install -r requirements.txt

  2. Initialize database

    python manage.py migrate

  3. Start server

    python manage.py runserver

Create admin account (optional)

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.