-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathapp.json
50 lines (50 loc) · 1.42 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
48
49
50
{
"name": "Canvas Realtime",
"website": "https://github.com/usecanvas/pro-realtime",
"addons": [
"heroku-postgresql",
"heroku-redis"
],
"description": "The Canvas realtime server",
"env": {
"LOG_SHAREDB": {
"description": "Whether to log all ShareDB activity (this results in extremely verbose logs",
"required": false
},
"NODE_ENV": {
"description": "Environment to run Node in",
"value": "production"
},
"SECRET_KEY_BASE": {
"description": "Key shared with API to verify connection cookies"
},
"SENTRY_DSN": {
"description": "A key for sending events to Sentry",
"required": false
},
"SIGNING_SALT": {
"description": "Salt shared with API for generating keys",
"value": "vMKcfdD0"
},
"TZ": {
"description": "Time zone for this app to run in",
"value": "UTC"
},
"WEB_URL": {
"description": "URL on which the web app runs"
}
},
"environments": {
"development": {
"API_REDIS_URL": "redis://localhost:6379",
"DATABASE_URL": "postgres://localhost:5432/canvas_pro_api_dev",
"NODE_ENV": "development",
"PORT": "4001",
"REDIS_URL": "redis://localhost:6379",
"SECRET_KEY_BASE": "Bah0Bijei9epheeshuod4eBaB3aeThaeshet6vaevighieMai9maeti1aeb4Oa7ko9ohfoX2Quah0riec",
"SIGNING_SALT": "vMKcfdD0",
"TZ": "UTC",
"WEB_URL": "http://localhost:4200"
}
}
}