forked from skarllot/redmine-on-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
25 lines (25 loc) · 809 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
{
"name": "Remine 3.4 on Heroku",
"description": "The Redmine project management application, made deployable to Heroku.",
"keywords": [
"project management",
"issue tracking",
"collaboration"
],
"website": "https://github.com/skarllot/redmine-on-heroku",
"repository": "https://github.com/skarllot/redmine-on-heroku",
"logo": "https://cloud.githubusercontent.com/assets/296432/3865668/0fbd67c8-1fa3-11e4-9d4e-b33353725c60.png",
"env": {
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
},
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
},
"addons": [
"heroku-postgresql",
"sendgrid"
]
}