-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
41 lines (41 loc) · 925 Bytes
/
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
{
"name": "MARSU",
"description": "Membership Application for Registration to Student Unions",
"keywords": [
"marsu",
"membership",
"registration",
"student",
"unions",
"rails"
],
"repository": "https://github.com/PhilippeGeek/marsu",
"env": {
"AZURE_CLIENT_ID": {
"description":"Azure client ID for login",
"required":"true"
},
"AZURE_CLIENT_SECRET": {
"description":"Azure Client secret for login",
"required":"true"
},
"AZURE_TENANT_ID": {
"description":"Domain used for Azure login",
"required":"true"
}
},
"scripts": {
"postdeploy": "bundle exec rails db:migrate && bundle exec rails db:seed",
"dokku":{
"predeploy": "bundle exec rails db:migrate && bundle exec rails db:seed"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
]
}