
- Set up FastAPI application structure - Create database models for User, Product, Cart, CartItem, Order, and OrderItem - Set up Alembic for database migrations - Create Pydantic schemas for request/response models - Implement API endpoints for products, cart operations, and checkout process - Add health endpoint - Update README with project details and documentation
4 lines
236 B
Python
4 lines
236 B
Python
# Import all CRUD operations to make them available throughout the app
|
|
from app.crud.product import product # noqa: F401
|
|
from app.crud.cart import cart, cart_item # noqa: F401
|
|
from app.crud.order import order, order_item # noqa: F401 |