A webapp made on Django that helps you keep track of your to-dos, and help you manage your activities and time. It has basic CRUD operations and uses a user based authentication to keep the to-dos seperated for different users
- Make todos
- Edit, Complete, Delete todos
- User Authentication
- Clone repository
git clone https://github.com/mayankdhnkr/toodoowoo.git
- Navigate to project directory
cd todo
- Create a virtual environment:
python -m venv myenv
- Activate the virtual environment:
myenv\Scripts\activate
- Install the project dependencies:
pip install -r requirements.txt
- Run database migrations:
python manage.py migrate
- Start the development server:
python manage.py runserver