A simple todo app built for practicing FastAPI and basic frontend integration. Supports adding, completing, and deleting todos.
- Backend: Python, FastAPI, SQLAlchemy, SQLite
- Frontend: HTML, CSS, Vanilla JavaScript
cd backend
python -m venv .env
.env\Scripts\activate
pip install -r requirements.txt
uvicorn app.main:app --reloadOpen http://127.0.0.1:8000 in your browser.