appidea-restapi/config.toml

27 lines
407 B
TOML

[server]
debug = true
host = "127.0.0.1:3000"
[database]
host = "127.0.0.1:3306"
database = "app-idea"
username = "root"
password = "admin"
[mail]
host = "http://127.0.0.1:3001"
key = "aaa"
[rabbitmq]
host = "localhost:5672"
username = "guest"
password = "guest"
[settings]
expiredTime = 72
usernameMinLen = 3
usernameMaxLen = 30
emailMinLen = 3
emailMaxLen = 255
passwordMinLen = 6
passwordMaxLen = 250