
- Created main.py with FastAPI app, CORS configuration, and basic endpoints - Added requirements.txt with necessary dependencies - Set up app directory structure with proper organization - Implemented base URL endpoint with app info and documentation links - Added health check endpoint that reports application and database status - Configured CORS to allow all origins - Set up Alembic for database migrations with proper SQLite configuration - Updated README with comprehensive project documentation
4 lines
59 B
Python
4 lines
59 B
Python
# Models package
|
|
from .todo import Todo
|
|
|
|
__all__ = ["Todo"] |