This is a minimal web application that allows users to manage a to-do list. The backend is built with Django and Django REST Framework, while the frontend is developed using React with TypeScript and styled with Tailwind CSS.
- Navigate to the backenddirectory:cd backend
- Create a virtual environment: python3 -m venv venv
- Activate the virtual environment: source venv/bin/activate
- Install dependencies: pip install -r requirements.txt
- Apply migrations: python manage.py migrate
- Run the server: python manage.py runserver
- Navigate to the frontenddirectory:cd frontend
- Install dependencies: npm install
- Start the development server: npm start
This code was generated with the assistance of an AI model.

