Some MySQL database configuration settings for this website

I don’t think this information will matter to too many other people, but (a) these are some MySQL database-related settings I use for the database behind this website, and (b) that database URL is the most important part. I don’t remember exactly why I needed that, but part of it had something to do with my SQL queries and using a DEV database version that is different than the PRODUCTION version used out here.

That being said, here are the settings:

# ScalikeJdbc properties

# JDBC settings
db.default.driver="com.mysql.cj.jdbc.Driver"
db.default.url="jdbc:mysql://localhost/db_name?useLegacyDatetimeCode=false&serverTimezone=America/Denver"
db.default.user="db_username"
db.default.password="db_password"

# Connection Pool settings
db.default.poolInitialSize=5
db.default.poolMaxSize=10
db.default.poolConnectionTimeoutMillis=1000

# Global settings
scalikejdbc.global.loggingSQLAndTime.enabled=false
scalikejdbc.global.loggingSQLAndTime.logLevel=warn       #was info
scalikejdbc.global.loggingSQLAndTime.warningEnabled=true
scalikejdbc.global.loggingSQLAndTime.warningThresholdMillis=1000
scalikejdbc.global.loggingSQLAndTime.warningLogLevel=warn
# `true` on next line disables stack trace printout; see 'single line mode'
# here: http://scalikejdbc.org/documentation/query-inspector.html
scalikejdbc.global.loggingSQLAndTime.singleLineMode=true
scalikejdbc.global.loggingSQLAndTime.printUnprocessedStackTrace=false
scalikejdbc.global.loggingSQLAndTime.stackTraceDepth=10