
- 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
11 lines
230 B
Python
11 lines
230 B
Python
from app.schemas.invoice import ( # noqa: F401
|
|
InvoiceBase,
|
|
InvoiceCreate,
|
|
InvoiceDB,
|
|
InvoiceUpdate,
|
|
InvoiceItemBase,
|
|
InvoiceItemCreate,
|
|
InvoiceItemDB,
|
|
InvoiceSearchQuery,
|
|
InvoiceStatusUpdate
|
|
) |