我在Flask
项目中使用Alembic进行迁移实施。有一个alembic.ini
文件,必须指定数据库配置:
sqlalchemy.url = driver://user:password@host/dbname
有没有办法从环境变量中指定参数?我试图以这种方式加载它们$(env_var)
但没有成功。谢谢!
答案 0 :(得分:9)
我已在@ sqlalchemy.url
中将env.py
设置为@dirn建议,从而解决了这个问题。
config.set_main_option('sqlalchemy.url', <db_uri>)
完成了这项工作,可以从环境或配置文件中加载<db_uri>
。
答案 1 :(得分:1)
我一直在寻找如何管理多个数据库的方法
这就是我所做的。我有两个数据库:日志和 ohlc
根据doc, 我已经设置了像这样的淡啤酒
alembic init --template multidb
databases = logs, ohlc
[logs]
sqlalchemy.url = postgresql://botcrypto:botcrypto@localhost/logs
[ohlc]
sqlalchemy.url = postgresql://botcrypto:botcrypto@localhost/ohlc
[...]
# this is the Alembic Config object, which provides
# access to the values within the .ini file in use.
config = context.config
# Interpret the config file for Python logging.
# This line sets up loggers basically.
fileConfig(config.config_file_name)
logger = logging.getLogger('alembic.env')
# overwrite alembic.ini db urls from the config file
settings_path = os.environ.get('SETTINGS')
if settings_path:
with open(settings_path) as fd:
settings = conf.load(fd, context=os.environ) # loads the config.yml
config.set_section_option("ohlc", "sqlalchemy.url", settings["databases"]["ohlc"])
config.set_section_option("logs", "sqlalchemy.url", settings["databases"]["logs"])
else:
logger.warning('Environment variable SETTINGS missing - use default alembic.ini configuration')
[...]
databases:
logs: postgresql://botcrypto:botcrypto@127.0.0.1:5432/logs
ohlc: postgresql://botcrypto:botcrypto@127.0.0.1:5432/ohlc
用法
SETTINGS=config.yml alembic upgrade head
希望它可以帮助您!