
- Set up project structure and dependencies - Create database models for users, posts, comments, and tags - Set up Alembic for database migrations - Implement user authentication (register, login) - Create CRUD endpoints for blog posts, comments, and tags - Add health check endpoint - Set up proper error handling - Update README with project details and setup instructions
11 lines
223 B
Plaintext
11 lines
223 B
Plaintext
fastapi>=0.104.0
|
|
uvicorn>=0.23.2
|
|
sqlalchemy>=2.0.23
|
|
alembic>=1.12.1
|
|
pydantic>=2.4.2
|
|
pydantic-settings>=2.0.3
|
|
python-jose[cryptography]>=3.3.0
|
|
passlib[bcrypt]>=1.7.4
|
|
python-multipart>=0.0.6
|
|
email-validator>=2.1.0
|
|
ruff>=0.1.3 |