go18/devcloud/etc/application.toml

20 lines
374 B
TOML
Raw Permalink Normal View History

2025-05-31 12:03:22 +08:00
[app]
name = "devcloud"
description = "app desc"
2025-05-31 18:09:24 +08:00
address = "http://127.0.0.1:8080"
2025-05-31 12:03:22 +08:00
encrypt_key = "defualt app encrypt key"
[datasource]
provider = "mysql"
host = "127.0.0.1"
port = 3306
database = "devcloud_go18"
username = "root"
password = "123456"
2025-05-31 18:09:24 +08:00
auto_migrate = false
2025-05-31 12:03:22 +08:00
debug = true
[http]
host = "127.0.0.1"
port = 8080
path_prefix = "api"