
- Set up FastAPI project structure with SQLite and SQLAlchemy - Create models for users, books, authors, categories, and orders - Implement JWT authentication and authorization - Add CRUD endpoints for all resources - Set up Alembic for database migrations - Add health check endpoint - Add proper error handling and validation - Create comprehensive documentation
10 lines
200 B
Plaintext
10 lines
200 B
Plaintext
fastapi>=0.103.1
|
|
uvicorn>=0.23.2
|
|
sqlalchemy>=2.0.20
|
|
alembic>=1.12.0
|
|
pydantic>=2.3.0
|
|
passlib[bcrypt]>=1.7.4
|
|
python-jose[cryptography]>=3.3.0
|
|
python-multipart>=0.0.6
|
|
email-validator>=2.0.0
|
|
ruff>=0.0.290 |