A clean and efficient task management API built with FastAPI.
- User Authentication
- CRUD operations for tasks
- JWT-based login
- SQLite database
- Simple modular codebase
- FastAPI
- SQLAlchemy
- SQLite
- OAuth2 + JWT
- Clone the repo
- Set up a virtual environment
- Install dependencies
- Run using Uvicorn
git clone https://github.com/YOUR_USERNAME/fastapifullstacktodos.git
cd fastapifullstacktodos
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
uvicorn main:app --reload
