forked from sharetribe/ftw-hourly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
47 lines (47 loc) · 2 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
40
41
42
43
44
45
46
47
{
"name": "Sharetribe Flex Template Demo: Time-based Process",
"description": "Yogatime, Sharetribe Flex template for time-based process",
"keywords": [
"node",
"react"
],
"repository": "https://github.com/sharetribe/ftw-hourly/",
"env": {
"REACT_APP_MAPBOX_ACCESS_TOKEN": {
"description": "See: Integrating to map providers documentation https://github.com/sharetribe/ftw-hourly/blob/master/docs/map-providers.md"
},
"REACT_APP_SHARETRIBE_SDK_CLIENT_ID": {
"description": "Client ID (API key). You will get this from the Sharetribe team."
},
"REACT_APP_STRIPE_PUBLISHABLE_KEY": {
"description": "Stripe publishable API key for generating tokens with Stripe API. Use test key (prefix pktest) for development."
},
"REACT_APP_SHARETRIBE_MARKETPLACE_CURRENCY": {
"description": "The currency used in the Marketplace as ISO 4217 currency code. For example: USD, EUR, CAD, AUD, etc.",
"value": "USD"
},
"REACT_APP_CANONICAL_ROOT_URL": {
"description": "Canonical root url of the marketplace. E.g. https://the-name-of-your-app.herokuapp.com or your actual domain. This is needed for social media sharing and SEO optimization."
},
"NODE_ENV": {
"description": "Node env. Use 'development' for development and 'production' for production.",
"value": "production"
},
"REACT_APP_ENV": {
"description": "A more fine grained env definition than NODE_ENV. Is used for example to differentiate envs in logging.",
"value": "production"
},
"REACT_APP_SHARETRIBE_USING_SSL": {
"description": "Redirect HTTP to HTTPS?",
"value": "true"
},
"SERVER_SHARETRIBE_TRUST_PROXY": {
"description": "Set when running the app behind a reverse proxy, e.g. in Heroku.",
"value": "true"
},
"REACT_APP_CSP": {
"description": "See: Content Security Policy (CSP) documentation https://github.com/sharetribe/ftw-hourly/blob/master/docs/content-security-policy.md",
"value": "report"
}
}
}