SPB Git

spb/qwhpi Public

QHPI — Quebec Housing Price Index: quality-adjusted, hierarchically pooled housing price indexes.

Python 63.9% TypeScript 25.4% CSS 5.5% TeX 3.5% SQL 0.8% Makefile 0.5% Dockerfile 0.5%
730 B · 33 lines ini
Raw Blame History
1# =============================================================================2# QWHPI — Quebec Weekly Housing Price Index3# Author  : Simon-Pierre Boucher4# Contact : contact@spboucher.ai5# File    : db/alembic.ini6# Purpose : Alembic configuration for QWHPI database migrations.7# =============================================================================8[alembic]9script_location = migrations10sqlalchemy.url = ${DATABASE_URL}1112[loggers]13keys = root1415[handlers]16keys = console1718[formatters]19keys = generic2021[logger_root]22level = WARN23handlers = console2425[handler_console]26class = StreamHandler27args = (sys.stderr,)28level = NOTSET29formatter = generic3031[formatter_generic]32format = %(levelname)-5.5s [%(name)s] %(message)s33