diff --git a/config/default.py b/config/default.py index d999f3a8..3ab9c873 100644 --- a/config/default.py +++ b/config/default.py @@ -46,4 +46,5 @@ print('=== USING DEFAULT CONFIG: ===') print('DB_HOST = ', DB_HOST) print('DEVELOPMENT = ', DEVELOPMENT) print('TESTING = ', TESTING) +print('PRODUCTION = ', PRODUCTION) print('PB_BASE_URL = ', PB_BASE_URL) diff --git a/crc/__init__.py b/crc/__init__.py index d724a7d8..25f1326e 100644 --- a/crc/__init__.py +++ b/crc/__init__.py @@ -22,8 +22,6 @@ else: app.config.root_path = app.instance_path app.config.from_pyfile('config.py', silent=True) -print(app.config) - db = SQLAlchemy(app) """:type: sqlalchemy.orm.SQLAlchemy"""