forked from openSUSE/osem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
87 lines (87 loc) · 2.03 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"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"
}
]
}