forked from gpickin/itb2020-fluentAPI
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.cfconfig.json
32 lines (32 loc) · 1013 Bytes
/
.cfconfig.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
{
"systemErr":"System",
"systemOut":"System",
"componentCacheEnabled":false,
"thistimezone":"UTC",
"adminPassword": "${CFCONFIG_ADMINPASSWORD}",
"debuggingEnabled":true,
"debuggingShowDatabase":true,
"debuggingReportExecutionTimes": false,
"disableInternalCFJavaComponents":false,
"requestTimeoutEnabled": true,
"robustExceptionEnabled": true,
"whitespaceManagement": "white-space-pref",
"requestTimeout": "0,0,5,0",
"datasources": {
"${DB_DATABASE}": {
"bundleName": "${DB_BUNDLENAME}",
"bundleVersion": "${DB_BUNDLEVERSION}",
"class": "${DB_CLASS}",
"custom": "useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&useLegacyDatetimeCode=true&allowPublicKeyRetrieval=true",
"database": "${DB_DATABASE}",
"dbdriver": "MySQL",
"dsn": "jdbc:mysql://{host}:{port}/{database}",
"host":"${DB_HOST:127.0.0.1}",
"password": "${DB_PASSWORD}",
"port": "${DB_PORT:3306}",
"username": "${DB_USER:root}",
"storage":"false",
"validate":"false"
}
}
}