forked from project-anacapa/course-github-org-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
65 lines (65 loc) · 1.76 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
{
"name": "Course Github Org Tool",
"description": "A tool to manage students in github organizations for courses",
"keywords": [],
"repository": "https://github.com/project-anacapa/course-github-org-tool/tree/development",
"success_url": "/",
"scripts": {
"postdeploy": "bundle exec rails db:migrate"
},
"env": {
"GIT_PROVIDER_URL": {
"description": "URL of your git and authentication provider. Optional if using github.com",
"value": "github.com",
"required": true
},
"OMNIAUTH_STRATEGY": {
"description": "Authentication Provider type: one of github, github_enterprise, or gitlab.",
"value": "github",
"required": true
},
"COURSE_ORGANIZATION": {
"description": "The name of your github organization or gitlab group.",
"required": true
},
"OMNIAUTH_PROVIDER_KEY": {
"description": "OAuth application client key.",
"required": true
},
"OMNIAUTH_PROVIDER_SECRET": {
"description": "OAuth application client secret.",
"required": true
},
"MACHINE_USER_NAME": {
"description": "Username of application machine user.",
"required": true
},
"MACHINE_USER_KEY": {
"description": "API Key with (user,repo,delete_repo,admin:org) for the machine user.",
"required": true
},
"WEBHOOK_SECRET": {
"description": "This helps the application be more secure when communicating with other services.",
"required": false,
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"worker": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
]
}