
- Created app/db/base.py with SQLAlchemy Base to avoid circular imports - Created app/db/session.py with SQLite database connection using /app/storage/db path - Created app/models/todo.py with Todo model including all required fields - Created app/schemas/todo.py with Pydantic schemas for request/response - Added requirements.txt with FastAPI, SQLAlchemy, and other dependencies - Created proper package structure with __init__.py files
6 lines
105 B
Plaintext
6 lines
105 B
Plaintext
fastapi==0.104.1
|
|
uvicorn[standard]==0.24.0
|
|
sqlalchemy==2.0.23
|
|
pydantic==2.5.0
|
|
alembic==1.12.1
|
|
ruff==0.1.6 |