-
Notifications
You must be signed in to change notification settings - Fork 48
/
app.json
32 lines (32 loc) · 805 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
{
"name": "Benotes",
"description": "An open source web app for your notes & bookmarks.",
"repository": "https://github.com/fr0tt/benotes",
"logo": "https://raw.githubusercontent.com/fr0tt/benotes/master/public/logo_144x144.png",
"keywords": [
"laravel",
"lumen",
"vue"
],
"addons": [
"heroku-postgresql"
],
"scripts": {
"postdeploy": []
},
"env": {
"APP_NAME": "Benotes",
"APP_ENV": "production",
"APP_DEBUG": "false",
"APP_KEY": {
"generator": "secret"
},
"JWT_SECRET": {
"generator": "secret"
},
"USE_FILESYSTEM": "false",
"TRUSTED_PROXIES": "*",
"LOG_CHANNEL": "errorlog",
"DB_CONNECTION": "pgsql"
}
}