Files
coconut-leaf/assets/coconut-leaf.template.toml
T

29 lines
572 B
TOML
Raw Normal View History

2026-07-17 21:20:39 +08:00
# Driver: "sqlite" or "mysql"
[database]
driver = "sqlite"
2026-07-17 21:20:39 +08:00
# Path to the SQLite database file
[database.config]
path = "coconut-leaf.db"
2026-07-17 21:20:39 +08:00
# MySQL connection parameters (placeholder, not yet implemented)
# [database]
# driver = "mysql"
#
# [database.config]
# host = "localhost"
# port = 3306
# user = "root"
# password = "password"
# database = "coconut_leaf"
2026-07-17 21:20:39 +08:00
# HTTP listening port
[web]
port = 8848
[others]
2026-07-17 21:20:39 +08:00
# 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