https://github.com/byceps/byceps
Tip revision: 830ac664bad1e237925a83da7b16eda317f739b5 authored by Jochen Kupperschmidt on 13 June 2025, 16:07:36 UTC
Add seat reservation preconditions logic
Add seat reservation preconditions logic
Tip revision: 830ac66
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)