Skip to content

ilshat25/to-do-list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

To-do list

To-do list realisation using Django. You can try it yourself.

Introduction

This app allows you to maintain your to-do list. All you need is to authenticate using your social account (google and vk available).

Instalation

  1. Clone git repo
    $ git clone https://github.com/ilshat25/to-do-list.git
  2. Install all requirements from requirements.txt file (use virtual environment)
    $ pip install -r requirements.txt
  3. Say django what settings file to use
    $ export DJANGO_SETTINGS_MODULE="toDoList.settings.local"
  4. Use django secrete key. You can generate one on this site
    $ export DJANGO_SECRET_KEY="Yours secret key"
  5. Apply all migrations
    $ python manage.py migrate
  6. Start your server
    $ python manage.py runserver