Initial commit: FastAPI scaffolding, SQLite schema, and basic models\n\n- Add main.py with DB initialization and Pydantic models\n- Add requirements.txt (fastapi, uvicorn, sqlalchemy, pydantic)\n- Update README with project description and setup\n\nOperation: shopping-list-api-2026-04-05\nWI1: Project setup and database design

This commit is contained in:
Marcus A.
2026-04-05 23:31:25 +00:00
parent 8421db833a
commit 8db5262f46
3 changed files with 76 additions and 2 deletions

View File

@@ -1,3 +1,14 @@
# shopping-list-api
# Shopping List API
Simple internal API to track shopping list items using SQLite and FastAPI
A simple internal API to track shopping list items using SQLite and FastAPI.
## Setup
```bash
pip install -r requirements.txt
uvicorn main:app --reload
```
## API
Endpoints will be documented after implementation.