Skip to content

Commit

Permalink
ci(docker): make apps.yaml/name/app optional
Browse files Browse the repository at this point in the history
  • Loading branch information
jourdain committed Jun 3, 2022
1 parent 51fe646 commit 45b8cc5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/scripts/generate_launcher_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ def run(input_path, apps_path, out_path):
)
raise Exception(msg)

app = config["app"]
default_cmd = [app] + default_command_flags
default_cmd = [
config.get("app", "your_trame_app_package_name")
] + default_command_flags
cmd = config.get("cmd", default_cmd)
cmd += config.get("args", [])
ready_line = config.get("ready_line", default_ready_line)
Expand Down

0 comments on commit 45b8cc5

Please sign in to comment.