/TodoList-v2

Todo List built by Django

Primary LanguageJavaScript

Features

  • Registration with verification

  • Contact

  • Log in and log out

  • Add a task

  • Edit a task

  • Done and delete a task

  • Sort tasks

Steps to Runserver

Change Admin Email for Registration Verification

  • Edit settings.py
EMAIL_HOST = 'smtp.163.com'
EMAIL_HOST_USER = 'your_email@163.com'
EMAIL_HOST_PASSWORD = 'your_email_password'
EMAIL_PORT = 25
EMAIL_USER_TLS = True
DEFAULT_FROM_EMAIL = 'your_email@163.com'

Install Modules

  • sudo pip install -r requirements.txt
  • cd todol
  • sudo python manage.py runserver

Others