-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
41 lines (41 loc) · 952 Bytes
/
config.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
{
"db": {
"adapter": "${DB_ADAPTER}",
"params": {
"host": "${DB_HOST}",
"port": "${DB_PORT}",
"username": "${DB_USERNAME}",
"password": "${DB_PASSWORD}",
"stage_dir": "${DB_STAGE_DIR}"
},
"database": "${DB_DATABASE}"
},
"dbs": {},
"app": {
"compression": "gzip",
"seed": 42,
"env": "${APP_ENV}",
"verbose": "${APP_VERBOSE}",
"queue": "${APP_QUEUE}"
},
"loc": {
"timezone": "${LOC_TIMEZONE}"
},
"aws": {
"key": "${AWS_KEY}",
"secret": "${AWS_SECRET}",
"region": "${AWS_REGION}"
},
"s3": {
"bucket": "${S3_BUCKET}"
},
"cwl": {
"group": "${CWL_GROUP}"
},
"pushover": {
"url": "https://api.pushover.net/1",
"user": "${PUSHOVER_USER}",
"token": "${PUSHOVER_TOKEN}",
"subject": "ManyThings"
}
}