-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
31 lines (31 loc) · 1.07 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
{
"name": "MemCachier Laravel Tutorial",
"description": "PHP Laravel app for a tutorial on using Laravel, MemCachier and Heroku together",
"keywords": ["php", "laravel", "memcache", "memcached", "memcachier", "caching", "tutorial", "performance" ],
"logo": "https://www.memcachier.com/assets/logo-large.png",
"image": "heroku/php",
"website": "https://www.memcachier.com",
"repository": "https://github.com/memcachier/examples-laravel",
"addons": [ "heroku-postgresql:hobby-dev", "memcachier" ],
"env": {
"APP_KEY": {
"description": "This should be changed with `heroku config:set APP_KEY=xxx` after the initial deploy. Run `heroku run php artisan key:generate --show` to generate a new app key.",
"value": "base64:4tLwD4XBdiP0SmHjbR08bkbl7S/itIi9Xj+X6+W93eo="
},
"LOG_CHANNEL": {
"value": "errorlog"
},
"DB_CONNECTION": {
"value": "pgsql"
},
"CACHE_DRIVER": {
"value": "memcached"
},
"SESSION_DRIVER": {
"value": "memcached"
}
},
"scripts": {
"postdeploy": "php artisan migrate --force"
}
}