Revision 0c5df4073d685bb1e571401d862d763c271a1c62 authored by Jochen Kupperschmidt on 04 September 2025, 12:52:11 UTC, committed by Jochen Kupperschmidt on 04 September 2025, 12:56:03 UTC
1 parent 8fce520
serve_apps.py
"""
Serve multiple apps together.
:Copyright: 2014-2025 Jochen Kupperschmidt
:License: Revised BSD (see `LICENSE` file for details)
"""
import structlog
from byceps.app_dispatcher import create_dispatcher_app
from byceps.config.integration import (
read_configuration_from_file_given_in_env_var,
)
from byceps.util.sentry import configure_sentry_from_env
log = structlog.get_logger()
configure_sentry_from_env('apps')
config = read_configuration_from_file_given_in_env_var()
app = create_dispatcher_app(config)

Computing file changes ...