forked from nazgul26/PHPRecipebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
31 lines (31 loc) · 829 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": "PHPRecipeBook",
"description": "Cookbook and Meal Planning Web Application.",
"addons": ["heroku-postgresql:hobby-dev"],
"scripts": {
"postdeploy": "bin/deploy.sh"
},
"env": {
"SECURITY_SALT": {
"description": "Security salt used for encryption",
"generator": "secret"
},
"APP_NAME": {
"description": "Name of the Application",
"value": "PHPRecipeBook"
},
"DEBUG": {
"description": "Provides additional debugging tools if supported",
"value": "false"
},
"APP_ENCODING": {
"value": "UTF-8"
},
"APP_DEFAULT_LOCALE": {
"value": "en"
},
"APP_DEFAULT_TIMEZONE": {
"value": "US/Eastern"
}
}
}