Skip to content

Commit 4458caa

Browse files
authored
Merge pull request #10 from techofourown/refactor/universal-app-deployer
refactor: add services arrays, remove renderer
2 parents 18dae05 + 8296552 commit 4458caa

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

catalog/catalog.json

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"app_uid": "techofourown/hello-world",
1515
"display_name": "Hello World",
1616
"description": "Small hello-world app sourced from a second sw-ourbox-apps repo.",
17-
"renderer": "hello-world",
1817
"service_name": "hello-world",
1918
"service_port": 80,
2019
"host_template": "hello.{box_host}",
@@ -25,14 +24,25 @@
2524
"default_backend": false,
2625
"image_names": [
2726
"hello-world"
27+
],
28+
"services": [
29+
{
30+
"name": "hello-world",
31+
"image": "hello-world",
32+
"port": 80,
33+
"command": [],
34+
"args": [],
35+
"env": {},
36+
"storage": null,
37+
"health_path": "/"
38+
}
2839
]
2940
},
3041
{
3142
"id": "ourbox-chat",
3243
"app_uid": "techofourown/ourbox-chat",
3344
"display_name": "OurBox Chat",
3445
"description": "CPU-only local chat UI backed by a bundled small GGUF model.",
35-
"renderer": "static-http",
3646
"service_name": "ourbox-chat",
3747
"service_port": 8080,
3848
"host_template": "chat.{box_host}",
@@ -43,6 +53,18 @@
4353
"default_backend": false,
4454
"image_names": [
4555
"ourbox-chat"
56+
],
57+
"services": [
58+
{
59+
"name": "ourbox-chat",
60+
"image": "ourbox-chat",
61+
"port": 8080,
62+
"command": [],
63+
"args": [],
64+
"env": {},
65+
"storage": null,
66+
"health_path": "/"
67+
}
4668
]
4769
}
4870
]

0 commit comments

Comments
 (0)