
- Set up FastAPI application with SQLite database - Implemented CRUD operations for inventory items, categories, and suppliers - Added Alembic migrations for database schema management - Configured CORS middleware for cross-origin requests - Added health check and API documentation endpoints - Structured project with proper separation of concerns - Added comprehensive README with API documentation
4 lines
83 B
Python
4 lines
83 B
Python
from sqlalchemy.ext.declarative import declarative_base
|
|
|
|
Base = declarative_base()
|