You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tye.yaml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -20,21 +20,21 @@ ingress:
20
20
services:
21
21
- name: store-api
22
22
executable: dapr # path to an executable (relative to this file)
23
-
args: run --app-id node-service --app-port %PORT% --dapr-http-port 3502 --components-path ./components -- npm run start # arguments to pass to the process
23
+
args: run --app-id node-app --app-port %PORT% --dapr-http-port 3502 --components-path ./components -- npm run start # arguments to pass to the process
24
24
# replicas: 5 # number of times to launch the application
25
25
workingDirectory: ./node-service/
26
26
bindings: # optional array of bindings (ports, connection strings)
27
27
- protocol: http
28
28
- name: order
29
29
executable: dapr # path to an executable (relative to this file)
30
-
args: run --app-id python-service --app-port %PORT% --dapr-http-port 3500 --components-path . -- python3 app.py # arguments to pass to the process
30
+
args: run --app-id python-app --app-port %PORT% --dapr-http-port 3500 --components-path . -- python3 app.py # arguments to pass to the process
31
31
# replicas: 5 # number of times to launch the application
32
32
workingDirectory: ./python-service/
33
33
bindings: # optional array of bindings (ports, connection strings)
34
34
- protocol: http
35
35
- name: inventory
36
36
executable: dapr # path to an executable (relative to this file)
37
-
args: run --app-id go-service --app-port %PORT% --dapr-http-port 3501 -- go run . # arguments to pass to the process
37
+
args: run --app-id go-app --app-port %PORT% --dapr-http-port 3501 -- go run . # arguments to pass to the process
38
38
workingDirectory: ./go-service/
39
39
bindings: # optional array of bindings (ports, connection strings)
0 commit comments