Skip to content

Commit

Permalink
Improved .cfconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Mar 23, 2023
1 parent 71c647f commit 1dbd88b
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 32 deletions.
48 changes: 28 additions & 20 deletions .cfconfig.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,41 @@
{
"adminPassword" : "coldbox",
"cacheDefaultObject":"coldbox",
"debuggingEnabled":true,
"debuggingReportExecutionTimes":false,
"disableInternalCFJavaComponents":false,
"requestTimeoutEnabled":true,
"whitespaceManagement":"white-space-pref",
"requestTimeout":"0,0,5,0",
"cacheDefaultObject":"coldbox",
"robustExceptionEnabled":true,
"caches":{
"coldbox":{
"storage":"true",
"coldbox":{
"storage":"true",
"type":"RAM",
"custom":{
"timeToIdleSeconds":"1800",
"timeToIdleSeconds":"1800",
"timeToLiveSeconds":"3600"
},
"class":"lucee.runtime.cache.ram.RamCache",
"readOnly":"false"
}
},
"datasources" : {
"${DB_DATABASE}":{
"host":"${DB_HOST}",
"dbdriver":"${DB_DRIVER}",
"database":"${DB_DATABASE}",
"dsn":"jdbc:mysql://{host}:{port}/{database}",
"custom":"useUnicode=true&characterEncoding=UTF-8&useLegacyDatetimeCode=true&autoReconnect=true",
"port":"${DB_PORT}",
"class":"${DB_CLASS}",
"username":"${DB_USER}",
"password":"${DB_PASSWORD}",
"connectionLimit":"100",
"connectionTimeout":"1"
}
}
}
"${DB_DATABASE}":{
"bundleName": "${DB_BUNDLENAME}",
"bundleVersion": "${DB_BUNDLEVERSION}",
"class":"${DB_CLASS}",
"connectionLimit":"100",
"connectionTimeout":"1",
"custom":"useUnicode=true&characterEncoding=UTF8&serverTimezone=UTC&useLegacyDatetimeCode=true&autoReconnect=true&useSSL=false",
"database":"${DB_DATABASE}",
"dbdriver":"${DB_DRIVER: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"
}
},
"whitespaceManagement":"white-space-pref"
}
26 changes: 14 additions & 12 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,35 +9,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Updated `.cfconfig.json` to latest standards and properties to assist in development

## [6.19.0] - 2023-03-22

### Regression

- Reverted the `lib/vendor` convention as this is on cb7 not cb6.
- Reverted the `lib/vendor` convention as this is on cb7 not cb6.

## [6.18.0] - 2023-03-21

### Added

- New automated changelogs
- Workflow updates for autocommit formatting and pr formatting checks
- New automated changelogs
- Workflow updates for autocommit formatting and pr formatting checks

## [6.17.0] => 2023-MAR-20

- Added routing conventions to make it easier for the cli to add routes.
- Added routing conventions to make it easier for the cli to add routes.

## [6.16.0] => 2023-MAR-20

### Added

- Changelog Tracking
- Github actions for auto building
- Latest ColdBox standards
- UI Updates
- Latest Alpine + Bootstrap Combo
- vscode introspection and helpers
- Docker build and compose consolidation to the `build` folder
- Cleanup of `tests` to new standards
- Changelog Tracking
- Github actions for auto building
- Latest ColdBox standards
- UI Updates
- Latest Alpine + Bootstrap Combo
- vscode introspection and helpers
- Docker build and compose consolidation to the `build` folder
- Cleanup of `tests` to new standards

[Unreleased]: https://github.com/coldbox-templates/rest/compare/v6.19.0...HEAD

Expand Down

0 comments on commit 1dbd88b

Please sign in to comment.