-
Notifications
You must be signed in to change notification settings - Fork 9
/
launch.json
47 lines (47 loc) · 1.67 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
// Use IntelliSense to learn about available attributes
// Hover over existing attribute descriptions.
// For more information, please check the following: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"preLaunchTask": "tsc: build - tsconfig.json",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/src/main.ts",
"console": "integratedTerminal",
"env": {
// basic config
"INPUT_SUBSCRIPTION-ID": "<REPLACE>",
"INPUT_RESOURCE-GROUP": "<REPLACE>",
"INPUT_LOCATION": "<REPLACE>",
"INPUT_NAME": "<REPLACE>",
"INPUT_MANAGED-ENVIRONMENT-NAME": "<REPLACE>",
// DAPR config
// "INPUT_DAPR-ENABLED": "<REPLACE>",
// "INPUT_DAPR-APP-PROTOCOL": "<REPLACE>",
// "INPUT_DAPR-APP-PORT": "<REPLACE>",
// Ingress config
// "INPUT_INGRESS-CUSTOM-DOMAINS-JSON": "<REPLACE>",
// "INPUT_INGRESS-EXTERNAL": "<REPLACE>",
// "INPUT_INGRESS-TARGET-PORT": "<REPLACE>",
// "INPUT_INGRESS-TRAFFIC-JSON": "<REPLACE>",
// Scale config
// "INPUT_SCALE-MIN-REPLICAS": "<REPLACE>",
// "INPUT_SCALE-MAX-REPLICAS": "<REPLACE>",
// "INPUT_SCALE-RULES-JSON": "<REPLACE>",
// Containers config
// "INPUT_CONTAINERS-CONFIG-JSON": "<REPLACE>",
// values for EnvironmentCredential class
// "AZURE_CLIENT_ID": "<REPLACE>",
// "AZURE_TENANT_ID": "<REPLACE>",
// "AZURE_CLIENT_SECRET": "<REPLACE>"
}
}
]
}