forked from symfony/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
26 lines (26 loc) · 825 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
{
"name": "Symfony Demo Application",
"description": "The official demo application for the Symfony framework.",
"keywords": [
"php",
"symfony"
],
"website": "https://symfony.com/download",
"repository": "https://github.com/symfony/symfony-demo",
"logo": "https://symfony.com/images/v5/pictos/demoapp.svg?v=4",
"success_url": "/",
"scripts": {
"postdeploy": "php app/console doctrine:schema:create && php app/console doctrine:fixtures:load -n"
},
"env": {
"SYMFONY_ENV": "prod",
"SYMFONY_SECRET": {
"description": "Extra entropy for %kernel.secret%; used for CSRF tokens, cookies and signed URLs.",
"generator": "secret"
}
},
"addons": [
"heroku-postgresql"
],
"image": "heroku/php"
}