This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
forked from bors-ng/bors-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
77 lines (76 loc) · 2.23 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
{
"name": "Bors-NG",
"description": "A merge bot for GitHub pull requests",
"repository": "https://github.com/bors-ng/bors-ng",
"website": "https://bors.tech/",
"logo": "https://cdn.rawgit.com/bors-ng/bors-ng/b9e756ecfdf4ede9241a8a30cbfdc4c010fd0a22/icon/bors-eye.svg",
"keywords": ["github", "continuous-integration", "continuous-testing", "elixir", "phoenix"],
"success_url": "/auth/github",
"env": {
"COMMAND_TRIGGER": {
"description": "Prefix for all commands",
"value": "bors"
},
"MIX_ENV": {
"description": "Mode to run the application in",
"value": "prod"
},
"POOL_SIZE": {
"description": "Number of connections to PostgreSQL to keep open",
"value": "18"
},
"PUBLIC_HOST": {
"description": "Where this website will be running (probably <app name>.herokuapp.com)"
},
"PUBLIC_PORT": {
"description": "Port number on PUBLIC_HOST",
"value": "443"
},
"PUBLIC_PROTOCOL": {
"description": "Protocol to use when connecting to PUBLIC_HOST:PUBLIC_PORT",
"value": "https"
},
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of cookies",
"generator": "secret"
},
"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_PEM": {
"description": "GitHub Integration private key (download the file, encode it with `openssl base64 -A -e < key.pem`, then paste the result here)"
},
"GITHUB_WEBHOOK_SECRET": {
"description": "Github Integration webhook secret"
},
"ALLOW_PRIVATE_REPOS": {
"description": "Allow non-OSS GitHub repos to be added",
"value": "true"
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": [
"heroku-postgresql:hobby-dev"
],
"buildpacks": [
{
"url": "https://github.com/HashNuke/heroku-buildpack-elixir.git"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static.git"
}
],
"scripts": {
"postdeploy": "MIX_ENV=prod mix ecto.migrate"
}
}