
- Create project structure with app organization - Set up FastAPI application with CORS and health endpoint - Implement database models with SQLAlchemy (User, Post, Comment) - Set up Alembic for database migrations - Implement authentication with JWT tokens - Create CRUD operations for all models - Implement REST API endpoints for users, posts, and comments - Add comprehensive documentation in README.md
14 lines
272 B
Plaintext
14 lines
272 B
Plaintext
fastapi>=0.95.0
|
|
uvicorn>=0.21.1
|
|
sqlalchemy>=2.0.0
|
|
alembic>=1.10.3
|
|
pydantic>=2.0.0
|
|
pydantic-settings>=2.0.0
|
|
python-jose[cryptography]>=3.3.0
|
|
passlib[bcrypt]>=1.7.4
|
|
python-multipart>=0.0.6
|
|
email-validator>=2.0.0
|
|
python-dotenv>=1.0.0
|
|
ruff>=0.0.292
|
|
pytest>=7.3.1
|
|
httpx>=0.24.0 |