
- Set up FastAPI application with proper project structure - Configure SQLite database with SQLAlchemy ORM - Implement user model with CRUD operations - Add Alembic for database migrations - Create comprehensive API endpoints for user management - Configure CORS middleware for cross-origin requests - Add health check endpoint and service information - Set up Ruff for code linting and formatting - Update README with complete documentation Co-Authored-By: BackendIM <noreply@backendim.com>
7 lines
169 B
Python
7 lines
169 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import users
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(users.router, prefix="/users", tags=["users"])
|