Todo list app to learn basic django
Feature on this app:
- Register User
- Login User
- CRUD
- Export CSV
- Import CSV
- Export and email CSV
- Logging
- Handler for 404 and 500
- Fetch many2many data in tag view
How to setup:
- Make sure you have python 3 and install virtual environment library
- Create virtual environtment "python3 -m virtualenv env"
- Activate virtual env "env\Scripts\activate"(windows) or "source env\bin\activate"(unix)
- Install python dependencies cd to this repo folder "pip install -r requirements.txt"
- Create configuration file, copy file.env and rename to .env and change all the values.
- Running the apps "python manage.py runserver"