22 lines
593 B
Go
Raw Normal View History

2025-02-21 18:42:56 +01:00
package config
import "time"
type HTTP struct {
2025-02-22 09:42:15 +01:00
BaseURL string `env:"BASE_URL" envDefault:"http://localhost:3001"`
Address string `env:"ADDRESS,expand" envDefault:":3001"`
2025-02-21 18:42:56 +01:00
Session Session `envPrefix:"SESSION_"`
}
type Session struct {
Keys []string `env:"KEYS"`
Cookie Cookie `envPrefix:"COOKIE_"`
}
type Cookie struct {
Path string `env:"PATH,expand" envDefault:"/"`
HTTPOnly bool `env:"HTTP_ONLY,expand" envDefault:"true"`
Secure bool `env:"SECURE,expand" envDefault:"false"`
MaxAge time.Duration `env:"MAX_AGE,expand" envDefault:"24h"`
}