To-do list realisation using Django. You can try it yourself.
This app allows you to maintain your to-do list. All you need is to authenticate using your social account (google and vk available).
- Clone git repo
$ git clone https://github.com/ilshat25/to-do-list.git
- Install all requirements from requirements.txt file (use virtual environment)
$ pip install -r requirements.txt
- Say django what settings file to use
$ export DJANGO_SETTINGS_MODULE="toDoList.settings.local"
- Use django secrete key. You can generate one on this site
$ export DJANGO_SECRET_KEY="Yours secret key"
- Apply all migrations
$ python manage.py migrate
- Start your server
$ python manage.py runserver