to-do-django
is a simple and efficient to-do list application built with Django. This application allows users to create, manage, and track their tasks with ease.
- User authentication
- Create, read, update, and delete (CRUD) operations for tasks
- Task categorization and prioritization
- Responsive design for use on any device
- Clone the repository:
git clone https://github.com/whoisdinanath/to-do-django.git
cd to-do-django
- Create a virtual environment and activate it:
python -m venv env
source env/bin/activate # On Windows use `env\Scripts\activate`
- Install the required packages:
pip install -r requirements.txt
- Run the migrations to set up the database:
python manage.py migrate
- Start the development server:
python manage.py runserver
Register an account, log in, and start managing your tasks!