This commit is contained in:
yash 2026-02-26 16:30:56 +03:00
parent 8a76cca5fb
commit 7eb4977b99
6 changed files with 537 additions and 5 deletions

View file

@ -33,7 +33,7 @@ type Bybit struct {
type Postgresql struct {
Address string `yaml:"address" env-required:"true"`
User string `yaml:"user" env-required:"true"`
Password string `yaml:"password" env-required:"true"`
Password string `yaml:"password" env-default:""` // empty for peer auth over Unix socket
DBName string `yaml:"db_name" env-required:"true"`
}