
- 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
10 lines
341 B
Python
10 lines
341 B
Python
|
|
|
|
from app.db.deps import get_db as db_get_db
|
|
from app.db.deps import get_current_user as db_get_current_user
|
|
from app.db.deps import get_current_active_user as db_get_current_active_user
|
|
|
|
# Re-export dependencies from app.db.deps
|
|
get_db = db_get_db
|
|
get_current_user = db_get_current_user
|
|
get_current_active_user = db_get_current_active_user |