
- Set up FastAPI application with SQLite database - Implement User and Item models with relationships - Add CRUD operations for users and items - Configure Alembic for database migrations - Include API documentation at /docs and /redoc - Add health check endpoint at /health - Enable CORS for all origins - Structure code with proper separation of concerns
10 lines
167 B
Plaintext
10 lines
167 B
Plaintext
fastapi==0.104.1
|
|
uvicorn==0.24.0
|
|
sqlalchemy==2.0.23
|
|
alembic==1.12.1
|
|
pydantic==2.5.0
|
|
python-multipart==0.0.6
|
|
passlib==1.7.4
|
|
python-jose==3.3.0
|
|
bcrypt==4.1.2
|
|
ruff==0.1.6 |