forked from salesforce/dr-cla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
74 lines (74 loc) · 1.72 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
{
"name": "DR CLA",
"env": {
"APPLICATION_SECRET": {
"generator": "secret"
},
"GITHUB_BOT_NAME": {
"description": "The name of the bot that checks PRs"
},
"GITHUB_CLIENT_ID": {
"description": "GitHub OAuth Client ID"
},
"GITHUB_CLIENT_SECRET": {
"description": "GitHub OAuth Client Secret"
},
"GITHUB_INTEGRATION_ID": {
"description": "GitHub Integration ID"
},
"GITHUB_INTEGRATION_SLUG": {
"description": "GitHub Integration Slug"
},
"GITHUB_INTEGRATION_CLIENT_ID": {
"description": "GitHub Integration OAuth Client ID"
},
"GITHUB_INTEGRATION_CLIENT_SECRET": {
"description": "GitHub Integration OAuth Client Secret"
},
"GITHUB_INTEGRATION_PRIVATE_KEY": {
"description": "GitHub Integration Private Key"
},
"ORG_NAME": {
"description": "The name of your organization"
},
"ORG_EMAIL": {
"description": "The email for your organization"
},
"ORG_URL": {
"description": "The URL to redirect to for the root of this application"
},
"ORG_LOGO": {
"description": "A cross domain accessible link to your orgs logo"
}
},
"addons": [
"heroku-postgresql"
],
"scripts": {
"postdeploy": "target/universal/stage/bin/apply-evolutions"
},
"environments": {
"test": {
"buildpacks": [
{
"url": "heroku/scala"
},
{
"url": "heroku/nodejs"
}
],
"scripts": {
"test-setup": "npm install -g snyk",
"test": ".bin/test.sh"
},
"env": {
"APPLICATION_SECRET": {
"generator": "secret"
}
},
"addons":[
"heroku-postgresql"
]
}
}
}