-
Notifications
You must be signed in to change notification settings - Fork 75
/
app.json
31 lines (31 loc) · 961 Bytes
/
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": "Sistema de Prestamos",
"description": "Sistema de préstamos con roles de usuarios, desarrollado en Laravel + Blade.",
"repository": "https://github.com/leifermendez/sistema-prestamos",
"logo": "https://avatars0.githubusercontent.com/u/15802366?s=460&u=77ec7ef359e8ed842aef769693f1675c0ed460fd&v=4",
"keywords": [
"php",
"laravel",
"blade"
],
"addons": [
"cleardb:ignite"
],
"scripts": {
"postdeploy": "php artisan migrate --force && php artisan db:seed --force"
},
"buildpacks": [
{
"url": "heroku/php"
}
],
"env": {
"APP_NAME": "my-laravel-app",
"APP_ENV": "production",
"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="
},
"APP_DEBUG": "true"
}
}