mirror of
https://github.com/openSUSE/osem.git
synced 2026-01-24 13:58:56 -05:00
It's not required to have this if you have any other means of file storage on heroku. There are many...
38 lines
907 B
JSON
38 lines
907 B
JSON
{
|
|
"name": "osem",
|
|
"description": "Open Source Event Manager",
|
|
"repository": "https://github.com/openSUSE/osem",
|
|
"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"
|
|
},
|
|
"NOKOGIRI_USE_SYSTEM_LIBRARIES": "1",
|
|
"RAILS_ENV": "production",
|
|
"RACK_ENV": "production"
|
|
},
|
|
"scripts": {
|
|
"postdeploy": "bundle exec rake db:schema:load db:seed"
|
|
},
|
|
"formation": {
|
|
"web": {
|
|
"quantity": 1
|
|
},
|
|
"worker": {
|
|
"quantity": 1
|
|
}
|
|
},
|
|
"addons": [
|
|
{
|
|
"plan": "heroku-postgresql"
|
|
},
|
|
{
|
|
"plan": "sendgrid"
|
|
}
|
|
]
|
|
}
|