
- Set up project structure with FastAPI and SQLite - Created Todo model with SQLAlchemy ORM - Added CRUD operations for todos - Implemented API endpoints for Todo operations - Added health check endpoint - Added Alembic for database migrations - Updated README with documentation generated with BackendIM... (backend.im)
9 lines
248 B
Plaintext
9 lines
248 B
Plaintext
Generic single-database configuration for the Todo application.
|
|
|
|
This directory contains Alembic migration scripts for database schema changes.
|
|
|
|
To apply migrations:
|
|
alembic upgrade head
|
|
|
|
To create a new migration:
|
|
alembic revision -m "description" |