Merge branch 'main' into feat/gunicorn-production-server

This commit is contained in:
Roy Belio 2025-11-27 14:26:00 +02:00 committed by GitHub
commit bd4a77ee2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 38 additions and 758 deletions

View file

@ -203,7 +203,7 @@ class StackRun(Subcommand):
config = StackRunConfig(**cast_image_name_to_string(replace_env_vars(config_contents)))
port = args.port or config.server.port
host = config.server.host or "0.0.0.0"
host = config.server.host or ["::", "0.0.0.0"]
# Set the config file in environment so create_app can find it
os.environ["LLAMA_STACK_CONFIG"] = str(config_file)