
- 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
6 lines
193 B
Python
6 lines
193 B
Python
from app.crud.crud_user import user
|
|
from app.crud.crud_post import post
|
|
from app.crud.crud_comment import comment
|
|
from app.crud.crud_tag import tag
|
|
|
|
__all__ = ["user", "post", "comment", "tag"] |