Generic single-database configuration with SQLite. This is a generic migration management setup for SQLAlchemy using Alembic. Changes to models in app/models/ should be reflected in migrations by running: ``` alembic revision --autogenerate -m "description of changes" ``` To apply migrations to the database, run: ``` alembic upgrade head ```