-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
39 lines (39 loc) · 1.3 KB
/
app.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
{
"name": "Composable Local Hybrid Dev Server",
"description": "This is a sample Node.js app that helps develop a hybrid composable build locally",
"repository": "https://github.com/SalesforceCommerceCloud/composable-hybrid-dev-server",
"keywords": ["node", "express", "heroku"],
"image": "heroku/nodejs",
"env": {
"PROXY_ORIGIN": {
"description": "The proxy endpoint",
"required": true,
"value": "https://your-app-name.herokuapp.com"
},
"PWA_ORIGIN": {
"description": "The PWA instance URL",
"required": true,
"value": "https://your-app-name.mobify-storefront.com"
},
"SFCC_ORIGIN": {
"description": "The SFCC instance URL",
"required": true,
"value": "https://abcd-001.dx.commercecloud.salesforce.com"
},
"PREPEND_LOCALE_TO_PATH": {
"description": "Should the routes include locale in the mapping (ex: /en_US/)",
"required": true,
"value": "true"
},
"PREPEND_SITEID_TO_PATH": {
"description": "Should the routes include Site ID in the mapping (ex: /RefArch/)",
"required": true,
"value": "true"
},
"MRT_RULE_1": {
"description": "A string with an MRT eCDN Rule expression (will be used in place of hardcoded routes)",
"required": false,
"value": ""
}
}
}