-
Notifications
You must be signed in to change notification settings - Fork 54
/
app.json
33 lines (33 loc) · 890 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
32
33
{
"name": "Gentelella",
"description": "A Symfony skeleton application with user account functionality based on the Twitter Bootstrap and Gentelella template.",
"repository": "https://github.com/krzysiekpiasecki/Gentelella",
"logo": "https://raw.githubusercontent.com/krzysiekpiasecki/Gentelella/master/web/assets/images/img.jpg",
"keywords": ["symfony","gentelella","template","bootstrap","admin"],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/php"
}
],
"env": {
"SYMFONY_ENV": {
"description": "Symfony run enviroment name",
"value": "prod"
},
"USER_NAME": {
"description": "User name",
"value": "admin"
},
"USER_PASSWORD": {
"description": "User password",
"generator": "secret"
},
"USER_EMAIL": {
"description": "User e-mail",
"value": ""
}
}
}