https://github.com/byceps/byceps
Tip revision: 59c49841a2a97e29c7d9d4fc7a503fef0a413b71 authored by Jochen Kupperschmidt on 11 March 2026, 08:24:05 UTC
Update pyfakefs to v6.1.4 (from v6.1.1)
Update pyfakefs to v6.1.4 (from v6.1.1)
Tip revision: 59c4984
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)
