-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
30 lines (30 loc) · 1018 Bytes
/
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
{
"name": "Oddworks Example Server",
"description": "A barebones Oddworks Server running two processes: API and Sync",
"repository": "https://gitlab.com/oddnetworks/oddworks/example-multi-process",
"logo": "http://s3-us-west-2.amazonaws.com/odd-networks-assets/odd-networks.png",
"keywords": ["node", "odd networks", "oddworks"],
"env": {
"JWT_SECRET": {
"description": "A secret key for generating JWTs for accessing the API.",
"generator": "secret"
},
"VIMEO_API_TOKEN": {
"description": "Your Vimeo user's API token. See https://developer.vimeo.com/api/authentication#generate-tokens"
},
"GOOGLE_ANALYTICS_ID": {
"description": "Your Google Analytics account ID (ie. 'UA-XXXX-XX')"
},
"SYNC_INTERVAL": {
"description": "The interval (in milliseconds) at which the sync provider(s) run",
"value": 300000
},
"NODE_ENV": {
"description": "Your application's Node environment",
"value": "production"
}
},
"addons": [
"redistogo:nano"
]
}