-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
68 lines (68 loc) · 2.18 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
{
"name": "Craft CMS Application",
"description": "A sample app + starterkit for deploying Craft 4 to Heroku.",
"keywords": [
"craftcms",
"craft",
"php"
],
"website": "https://oof.studio/",
"repository": "https://github.com/oof-bar/craft-heroku",
"success_url": "/admin/install",
"scripts": {},
"env": {
"CRAFT_ENVIRONMENT": {
"description": "The Craft environment for this app.",
"value": "production"
},
"CRAFT_LICENSE_KEY": {
"description": "The contents of your Craft license key file. Preserve newlines!"
},
"CRAFT_SECURITY_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"CRAFT_STORAGE_PATH": {
"description": "Where we should store Craft runtime artifacts. Must be writable by the Heroku web process, and assumed ephemeral. This is not a place to permanently store uploaded files.",
"value": "/tmp"
},
"CRAFT_EPHEMERAL": {
"description": "This value tells Craft to treat the filesystem as ephemeral. It also redirects logs to stdout/stderr.",
"value": "true"
},
"CRAFT_ALLOW_ADMIN_CHANGES": {
"description": "Changes to system configuration should only happen in local development.",
"value": "false"
},
"MAILER_FROM_ADDRESS": {
"description": "The email address your application will use as the default sender. Craft will not likely be able to send email, out-of-the-box—it is recommended that you ",
"required": true
}
},
"formation": {
"web": {
"quantity": 2,
"size": "standard-1x"
},
"worker": {
"quantity": 1,
"size": "standard-1x"
}
},
"addons": [
"heroku-postgresql",
"heroku-redis"
],
"buildpacks": [
{
"url": "heroku/php"
}
],
"environments": {
"staging": {
"env": {
"ENVIRONMENT": "production"
}
}
}
}