-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathapp.json
44 lines (44 loc) · 1.08 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
{
"name": "AlchemyCMS Demo",
"description": "A demo installation of AlchemyCMS.",
"repository": "https://github.com/AlchemyCMS/alchemy-demo",
"website": "https://alchemy-cms.com/",
"logo": "https://raw.githubusercontent.com/AlchemyCMS/alchemy_cms/master/app/assets/images/alchemy/favicon.ico",
"keywords": ["alchemy", "demo", "cms"],
"buildpacks": [
{
"url": "heroku/node"
},
{
"url": "https://github.com/mojodna/heroku-buildpack-jemalloc.git"
},
{
"url": "heroku/ruby"
}
],
"addons": [
"heroku-postgresql:hobby-dev",
"memcachedcloud:30",
"cloudinary:starter",
"papertrail:choklad"
],
"scripts": {
"postdeploy": "rake db:migrate && rake db:seed"
},
"env": {
"SECRET_KEY_BASE": {
"description": "The rails master key for encrypted credentials.",
"generator": "secret"
},
"DEVISE_SECRET_TOKEN": {
"description": "The devise secret key for encrypting passwords.",
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}