Welcome to TodoApp, a meticulously crafted Django-based todo web application that combines robust security features including email verification, OTP authentication, and password hashing, with a clean and efficient codebase. Experience seamless task management in a protected environment, where your data's security is paramount, and your productivity is optimized. TaskGuard: Where organization meets peace of mind.
Create a virtual environment
python -m venv venv
Install dependencies
pip install -r requirements.txt
- Make Migrations
python manage.py makemigrations
- Migrate changes to database
python manage.py migrate
- Create a super user
python manage.py createsuperuser
- Run Server
python manage.py runserver
- Email Configuration in .env file
HOST_EMAIL = "YOUR_EMAIL"
HOST_PASSWORD = "YOUR_PASSWORD"