hmn/src/config/types.go

46 lines
772 B
Go

package config
import (
"fmt"
"github.com/jackc/pgx/v4"
"github.com/rs/zerolog"
)
type Environment string
const (
Live Environment = "live"
Beta = "beta"
Dev = "dev"
)
type HMNConfig struct {
Env Environment
Addr string
BaseUrl string
LogLevel zerolog.Level
Postgres PostgresConfig
Auth AuthConfig
}
type PostgresConfig struct {
User string
Password string
Hostname string
Port int
DbName string
LogLevel pgx.LogLevel
MinConn int32
MaxConn int32
}
type AuthConfig struct {
CookieDomain string
CookieSecure bool
}
func (info PostgresConfig) DSN() string {
return fmt.Sprintf("user=%s password=%s host=%s port=%d dbname=%s", info.User, info.Password, info.Hostname, info.Port, info.DbName)
}