forked from barberj/release-ninja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (50 loc) · 1.25 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": "Release Ninja",
"description": "Provide your product manager, internal stakeholders, and customers with real-time release notes from your Github based project.",
"website": "https://github.com/SalesLoft/release-ninja",
"repository": "https://github.com/SalesLoft/release-ninja",
"keywords": [
"product management",
"customer success",
"github integration"
],
"scripts": {
"postdeploy": "bundle exec rake db:setup"
},
"addons": [
"newrelic:wayne",
"rollbar",
"mandrill"
],
"env": {
"PUMA_WORKERS": 2,
"MIN_THREADS": 1,
"MAX_THREADS": 4,
"GITHUB_ID": {
"description": "Production Github ID",
"value": ""
},
"GITHUB_SECRET": {
"description": "Production Github Secret",
"value": ""
},
"GOOGLE_CLIENT_ID": {
"description": "Production Google Client ID",
"value": "",
"required": false
},
"GOOGLE_CLIENT_SECRET": {
"description": "Production Google Client Secret",
"value": "",
"required": false
},
"HOST_URL": {
"description": "URL of your app to be used in mailers",
"value": ""
},
"EMAIL_DOMAIN": {
"description": "The domain your emails will send from",
"value": ""
}
}
}