; Alembic configuration for infoxtractor. ; ; The sqlalchemy.url is filled at runtime from the IX_POSTGRES_URL env var ; (alembic/env.py does the substitution). We keep the template here so ; ``alembic check`` / ``alembic history`` tools work without an env var set. [alembic] script_location = alembic file_template = %%(rev)s_%%(slug)s prepend_sys_path = . sqlalchemy.url = driver://user:pass@localhost/dbname [post_write_hooks] [loggers] keys = root,sqlalchemy,alembic [handlers] keys = console [formatters] keys = generic [logger_root] level = WARN handlers = console qualname = [logger_sqlalchemy] level = WARN handlers = qualname = sqlalchemy.engine [logger_alembic] level = INFO handlers = qualname = alembic [handler_console] class = StreamHandler args = (sys.stderr,) level = NOTSET formatter = generic [formatter_generic] format = %(levelname)-5.5s [%(name)s] %(message)s datefmt = %H:%M:%S