Files
osem/app.json
JewelSam f6e74461ba Add schedule interval as attribute of a program
Also, the part of the schedule event is deleted and the length of the event types
changes to the nearest suitable after changing the length of the interval.

This closes #1220
2017-04-01 21:39:20 +03:00

88 lines
2.0 KiB
JSON

{
"name": "osem",
"description": "Open Source Event Manager",
"env": {
"DEPLOY_TASKS": "db:cleardb_env",
"CLOUDINARY_URL": {
"description": "Configure your cloudinary.com cloud name and api key/secret",
"required": true
},
"DATABASE_URL": {
"description": "Configure your database connection",
"required": true
},
"SECRET_KEY_BASE": {
"description": "a key which allows sessions to be verified against a known secure key to prevent tampering",
"required": true
},
"LANG": {
"required": false
},
"OSEM_EMAIL_ADDRESS": {
"description": "The address OSEM uses for sending mails",
"required": false
},
"OSEM_HOSTNAME": {
"description": "The host this OSEM instance runs on",
"required": false
},
"OSEM_NAME": {
"description": "The name of your page",
"required": false
},
"OSEM_SMTP_ADDRESS": {
"description": "The smtp server to use",
"required": false
},
"OSEM_SMTP_AUTHENTICATION": {
"description": "The auth method for the smtp server",
"required": false
},
"OSEM_SMTP_DOMAIN": {
"description": "The HELO domain for the smtp server",
"required": false
},
"OSEM_SMTP_PASSWORD": {
"description": "The password for the smtp server",
"required": false
},
"OSEM_SMTP_PORT": {
"description": "The port on the smtp server",
"required": false
},
"OSEM_SMTP_USERNAME": {
"description": "The user for the smtp server",
"required": false
},
"RACK_ENV": {
"required": false
},
"RAILS_ENV": {
"required": false
}
},
"scripts": {
"postdeploy": "bundle exec rake db:reset data:demo"
},
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
}
},
"addons": [
"cleardb",
"sendgrid"
],
"buildpacks": [
{
"url": "heroku/ruby"
},
{
"url": "https://github.com/gunpowderlabs/buildpack-ruby-rake-deploy-tasks"
}
]
}