""" Create and initialize the application using a configuration specified by an environment variable. :Copyright: 2006-2020 Jochen Kupperschmidt :License: Modified BSD, see LICENSE for details. """ from byceps.application import create_app, init_app from byceps.util.system import get_config_filename_from_env_or_exit config_filename = get_config_filename_from_env_or_exit() app = create_app(config_filename) init_app(app)