hmn/src/config/config.go.example

21 lines
415 B
Plaintext

package config
var Config = HMNConfig{
Env: Dev,
Addr: ":9001",
BaseUrl: "http://handmade.local:9001",
Postgres: PostgresConfig{
User: "hmn",
Password: "password",
Hostname: "handmade.local",
Port: 5454,
DbName: "hmn",
MinConn: 2, // Keep these low for dev, high for production
MaxConn: 2,
},
Auth: AuthConfig{
CookieDomain: ".handmade.local",
CookieSecure: false,
},
}