-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
56 lines (56 loc) · 1.48 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
{
"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",
"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,admin:org) for the machine user.",
"required": true
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
]
}