osem-fcy/app.json

38 lines
907 B
JSON
Raw Permalink Normal View History

2016-05-02 16:24:08 +02:00
{
"name": "osem",
"description": "Open Source Event Manager",
"repository": "https://github.com/openSUSE/osem",
2016-05-02 16:24:08 +02:00
"env": {
"CLOUDINARY_URL": {
"description": "Create a https://cloudinary.com account and set the cloud url here. It starts with cloudinary://",
"required": false
},
"SECRET_KEY_BASE": {
"description": "A key to verify sessions. At least 40 characters. For instance: https://www.randomlists.com/string?base=16&length=64&qty=1",
"generator": "secret"
2016-05-02 16:24:08 +02:00
},
"NOKOGIRI_USE_SYSTEM_LIBRARIES": "1",
"RAILS_ENV": "production",
"RACK_ENV": "production"
2016-05-02 16:24:08 +02:00
},
2016-05-25 14:48:02 +02:00
"scripts": {
"postdeploy": "bundle exec rake db:schema:load db:seed"
2016-05-25 14:48:02 +02:00
},
2016-05-02 16:24:08 +02:00
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
}
},
"addons": [
{
"plan": "heroku-postgresql"
},
{
"plan": "sendgrid"
2016-05-02 16:24:08 +02:00
}
]
}