
- Create app/db/base.py with SQLAlchemy Base definition - Create app/db/session.py with database engine and session setup using absolute path /app/storage/db/db.sqlite - Create app/models/todo.py with Todo model including id, title, description, completed, created_at, updated_at fields - Create app/schemas/todo.py with Pydantic schemas for TodoCreate, TodoUpdate, and TodoResponse - Add necessary __init__.py files for proper package structure
7 lines
119 B
Plaintext
7 lines
119 B
Plaintext
fastapi==0.104.1
|
|
uvicorn==0.24.0
|
|
sqlalchemy==2.0.23
|
|
alembic==1.13.1
|
|
pydantic==2.5.0
|
|
python-multipart==0.0.6
|
|
ruff==0.1.7 |