app.json
{
"stack": "heroku-22",
"name": "CFP-App",
"description": "Conference call for proposal management application by Ruby Central",
"keywords": [
"cfp",
"proposals",
"conference"
],
"addons": [
"heroku-postgresql",
"heroku-redis"
],
"scripts": {
"postdeploy": "bundle exec rake db:schema:load db:seed"
},
"env": {
"TIMEZONE": {
"description": "Timezone for the Rails app",
"value": "Mountain Time (US & Canada)"
},
"MAIL_HOST": {
"description": "The hostname from which emails will originate.",
"required": true
},
"MAIL_FROM": {
"description": "The email address from which emails will originate.",
"required": true
},
"SECRET_TOKEN": {
"description": "The secret token for the application",
"generator": "secret"
},
"GITHUB_KEY": {
"description": "GitHub application key",
"required": true
},
"GITHUB_SECRET": {
"description": "GitHub application secret",
"required": true
},
"TWITTER_KEY": {
"description": "Twitter application key",
"required": true
},
"TWITTER_SECRET": {
"description": "Twitter application secret",
"required": true
}
}
}