
- Create FastAPI app structure - Set up SQLAlchemy with SQLite for database management - Implement invoice and invoice item models - Add Alembic for database migrations - Create invoice generation and retrieval API endpoints - Add health check endpoint - Set up Ruff for linting - Update README with project details
6 lines
174 B
Python
6 lines
174 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.routes import invoices
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(invoices.router, prefix="/invoices", tags=["invoices"]) |