
- Set up project structure and requirements - Create database models and connection setup using SQLAlchemy - Set up Alembic migrations - Create API endpoints for Todo CRUD operations - Add health endpoint - Update README with project information generated with BackendIM... (backend.im)
5 lines
137 B
Python
5 lines
137 B
Python
from app.database.database import engine
|
|
from app.models.todo import Base
|
|
|
|
def create_tables():
|
|
Base.metadata.create_all(bind=engine) |