2019-01-04 03:49:38 +00:00
|
|
|
from sqlalchemy import create_engine
|
|
|
|
from sqlalchemy.orm import scoped_session, sessionmaker
|
|
|
|
from sqlalchemy.ext.declarative import declarative_base
|
|
|
|
import yaml
|
2020-03-25 03:47:10 +00:00
|
|
|
import os
|
2019-01-04 03:49:38 +00:00
|
|
|
|
2020-03-25 03:47:10 +00:00
|
|
|
configyaml = os.environ.get("CONFIG_FILE")
|
|
|
|
|
|
|
|
with open(configyaml, "rb") as config_file:
|
|
|
|
config = yaml.load(config_file, Loader=yaml.SafeLoader)
|
2019-01-04 03:49:38 +00:00
|
|
|
|
|
|
|
engine = create_engine(config['SERVICE_DB'])
|
|
|
|
db_session = scoped_session(sessionmaker(bind=engine))
|
|
|
|
|
|
|
|
Base = declarative_base()
|
|
|
|
|
|
|
|
Base.query = db_session.query_property()
|
|
|
|
|
|
|
|
def init_db():
|
|
|
|
# import all modules here that might define models so that
|
|
|
|
# they will be registered properly on the metadata. Otherwise
|
|
|
|
# you will have to import them first before calling init_db()
|
|
|
|
import models
|
|
|
|
Base.metadata.create_all(bind=engine)
|