-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
38 lines (38 loc) · 1.05 KB
/
Copy pathconfig.example.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
{
"currency": "usd",
"cartTtlSeconds": 3600,
"catalog": {
"type": "bundled",
"path": "./examples/products.example.json",
"cacheTtlSeconds": 300
},
"storage": {
"type": "sqlite"
},
"tax": {
"enabled": false
},
"successUrl": "https://example.com/checkout/success",
"cancelUrl": "https://example.com/checkout/cancel",
"orderWebhookUrl": "https://example.com/hooks/order",
"permalinkBase": "https://example.com/orders",
"acp": {
"requireSignature": false
},
"links": [
{ "type": "terms_of_use", "url": "https://example.com/terms" },
{ "type": "privacy_policy", "url": "https://example.com/privacy" }
],
"feed": {
"brand": "Example Store",
"seller_name": "Example Store",
"seller_url": "https://example.com",
"store_country": "US",
"target_countries": ["US"],
"is_eligible_search": true,
"is_eligible_checkout": true,
"seller_tos": "https://example.com/terms",
"seller_privacy_policy": "https://example.com/privacy",
"productUrlBase": "https://example.com/products"
}
}