-
Notifications
You must be signed in to change notification settings - Fork 46
/
app.json
28 lines (28 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
{
"name": "QARoR",
"description": "The Open-Source Questions & Answers platform for Ruby on Rails",
"repository": "https://github.com/mateuszdw/qaror",
"keywords": ["discussions", "forums", "questions", "answers"],
"logo": "https://raw.githubusercontent.com/mateuszdw/qaror/master/app/assets/images/logo.png",
"website": "http://qaror.herokuapp.com",
"scripts": {
"postdeploy": "bundle exec rake db:migrate && bundle exec rake db:seed"
},
"env": {
"APP_DOMAIN": {
"description": "WARNING! Please replace <APP NAME> with your heroku app name. Replace full URL if you have custom domain for your QARoR app.",
"value": "http://<APP NAME>.herokuapp.com"
},
"DISPLAY_APP_NAME": {
"value": "Your QARoR app name"
},
"SECRET_KEY_BASE": {
"description": "This gets generated",
"generator": "secret"
}
},
"addons": [
"mailgun",
"memcachier"
]
}