29 lines
572 B
TOML
29 lines
572 B
TOML
# Driver: "sqlite" or "mysql"
|
|
[database]
|
|
driver = "sqlite"
|
|
|
|
# Path to the SQLite database file
|
|
[database.config]
|
|
path = "coconut-leaf.db"
|
|
|
|
# MySQL connection parameters (placeholder, not yet implemented)
|
|
# [database]
|
|
# driver = "mysql"
|
|
#
|
|
# [database.config]
|
|
# host = "localhost"
|
|
# port = 3306
|
|
# user = "root"
|
|
# password = "password"
|
|
# database = "coconut_leaf"
|
|
|
|
# HTTP listening port
|
|
[web]
|
|
port = 8848
|
|
|
|
[others]
|
|
# Interval (in seconds) for automatic cleanup of expired tokens
|
|
auto-token-clean-duration = 86400
|
|
# Debug mode; must be set to false in production
|
|
debug = true
|