
- FastAPI application with user management, destinations, and trip planning - SQLite database with SQLAlchemy ORM - Database models for Users, Destinations, and Trips - Pydantic schemas for request/response validation - Full CRUD API endpoints for all resources - Alembic migrations setup - Health check endpoint - CORS configuration for development - Comprehensive documentation and README
4 lines
83 B
Python
4 lines
83 B
Python
from sqlalchemy.ext.declarative import declarative_base
|
|
|
|
Base = declarative_base()
|