Golang_HomeWork/hw12_13_14_15_calendar/configs/config.toml

23 lines
314 B
TOML

[Server]
Address = "localhost"
Port = "8080"
[Grpc]
Address = "localhost"
Port = "50051"
[Http]
Address = "localhost"
Port = "50051"
[Logger]
File = "./calendar.log"
Level = "INFO"
[Storage]
inMemory = false
SQLHost = "localhost"
SQLPort = "5432"
SQLDbase = "calendar"
SQLUser = "calendar"
SQLPass = "12345678"