A full-stack Todo web application built with Django REST Framework and Svelte.
Designed as a complete CRUD system for managing tasks — it’s a production-ready, modular, and scalable app built for speed, simplicity, and growth.
django-svelte-todo/ ├── backend/ │ ├── manage.py │ ├── todos/ │ └── todo_system/ └── frontend/ ├── src/ │ ├── api.js │ ├── components/TodoList.svelte │ └── App.svelte └── package.json
cd backend
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py runserver