A simple FastAPI project with SQLite and SQLAlchemy.
- Full CRUD operations for student records
- Input validation with Pydantic
- Dependency injection
- Health check endpoint
.envfor configuration- Docker-ready
python -m venv venv
source venv\Scripts\activate
pip install -r requirements.txt
uvicorn app.main:app --reload