-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
35 lines (35 loc) · 1.18 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
{
"name": "CFP Vote application",
"description": "A web app to help you vote on CFP submissions for your event",
"repository": "https://github.com/JSConfBp/cfp-vote",
"logo": "https://raw.githubusercontent.com/JSConfBp/cfp-vote/master/docs/icon.png",
"keywords": ["cfp", "vote", "conference"],
"addons": [
"heroku-redis:hobby-dev"
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"GITHUB_CLIENT_ID": {
"description": "Required to make GitHub Oauth logins work. Register a new OAuth application on GitHub for your User or Org.",
"required": "true"
},
"GITHUB_CLIENT_SECRET": {
"description": "Required to make GitHub Oauth logins work. Register a new OAuth application on GitHub for your User or Org.",
"required": "true"
},
"GITHUB_REDIRECT_URI": {
"description": "Required to make GitHub Oauth logins work. Should point to the /oauth endpoint on your app.",
"required": "true",
"value": "https://__YOUR_APP__.herokuapp.com/oauth"
},
"ADMINS": {
"description": "List of GitHub user names, who will have adminisrative privileges",
"required": "true",
"value": []
}
}
}