-
Notifications
You must be signed in to change notification settings - Fork 125
/
app.json
80 lines (80 loc) · 2.21 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "Officelife",
"description": "Know how your employees feel.",
"repository": "https://github.com/officelifehq/officelife",
"logo": "https://raw.githubusercontent.com/officelifehq/officelife/main/public/img/logo.png",
"keywords": [
"hr",
"crm",
"office",
"management"
],
"buildpacks": [
{
"url": "heroku/php"
},
{
"url": "heroku/nodejs"
}
],
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
},
{
"plan": "scheduler:standard"
}
],
"scripts": {
"postdeploy": "php artisan setup --force -vvv"
},
"env": {
"APP_KEY": {
"description": "Please change this to a 32-character string. For example run `echo -n 'base64:'; openssl rand -base64 32` and copy/paste the value.",
"value": "",
"required": true
},
"DB_CONNECTION": {
"description": "Database connection to use.",
"value": "pgsql",
"required": true
},
"APP_ENV": {
"description": "Set to 'production' by default, or set it to 'local' if you want to install the app as a development version.",
"value": "production",
"required": false
},
"APP_TRUSTED_PROXIES": {
"description": "Set the trusted proxy IP addresses. Default to '*' to allow all heroku background ips.",
"value": "*",
"required": false
},
"LOG_CHANNEL": {
"description": "Set logging channel. Default to 'errorlog' to log error on heroku logs.",
"value": "errorlog",
"required": false
},
"CACHE_DRIVER": {
"description": "Set cache driver. Default to 'database', use 'redis' in combination with redis add-on.",
"value": "database",
"required": false
},
"QUEUE_CONNECTION": {
"description": "Set queue driver. Default to 'sync' with free dynos. Add paid dynos, and use 'database, or 'redis' in combination with redis add-on.",
"value": "sync",
"required": false
},
"SESSION_DRIVER": {
"description": "Set session driver. Default to 'database', use 'redis' in combination with redis add-on.",
"value": "database",
"required": false
}
},
"environments": {
"test": {
"env": {
"APP_ENV": "local"
}
}
}
}