I’m attempting to configure SQLAlchemy Alembic for my Pyramid project and I want to use my developement.ini (or production.ini) for the configuration settings for Alembic. Is it possible to specify the .ini file I wish to use anywhere within Alembic?
I’m attempting to configure SQLAlchemy Alembic for my Pyramid project and I want to
Share
Just specify
alembic -c /some/path/to/another.iniwhen running alembic commands. You could even put the[alembic]section in your development.ini and production.ini files and justalembic -c production.ini upgrade head.