forked from huboard/huboard-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
127 lines (127 loc) · 2.22 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "huboard-web",
"scripts": {
},
"env": {
"AWS_ACCESS_KEY_ID": {
"required": true
},
"AWS_S3_BUCKET": {
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"required": true
},
"BUILDPACK_URL": {
"required": true
},
"CLOUDFRONT_URL": {
"required": true
},
"COUCH_DATABASE": {
"required": true
},
"COUCH_URL": {
"required": true
},
"ELASTICSEARCH_URL": {
"required": true
},
"GITHUB_API_ENDPOINT": {
"required": true
},
"GITHUB_AUTH_STRATEGY": {
"required": true
},
"GITHUB_CLIENT_ID": {
"required": true
},
"GITHUB_SECRET": {
"required": true
},
"GITHUB_WEB_ENDPOINT": {
"required": true
},
"GITHUB_WEBHOOK_ENDPOINT": {
"required": true
},
"HEROKU_APP_ID": {
"required": true
},
"HEROKU_APP_NAME": {
"required": true
},
"HEROKU_PARENT_APP_NAME": {
"required": true
},
"HEROKU_RELEASE_VERSION": {
"required": true
},
"HEROKU_SLUG_COMMIT": {
"required": true
},
"HEROKU_SLUG_DESCRIPTION": {
"required": true
},
"HUBOARD_ENV": {
"required": true
},
"LANG": {
"required": true
},
"MAX_THREADS": {
"required": true
},
"RACK_ENV": {
"required": true
},
"RAILS_ENV": {
"required": true
},
"RAILS_SERVE_STATIC_FILES": {
"required": true
},
"RAYGUN_APIKEY": {
"required": true
},
"REDIS_URL": {
"required": true
},
"SECRET_KEY": {
"required": true
},
"SECRET_KEY_BASE": {
"required": true
},
"SEGMENTIO_KEY": {
"required": true
},
"SESSION_SECRET": {
"required": true
},
"SOCKET_BACKEND": {
"required": true
},
"STRIPE_API": {
"required": true
},
"STRIPE_PUBLISHABLE_API": {
"required": true
},
"STRIPE_SECRET_KEY": {
"required": true
},
"WARDEN_GITHUB_VERIFIER_SECRET": {
"required": true
}
},
"addons": [
"rediscloud",
"memcachier"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-multi"
}
]
}