Taobin-Recipe-Manager/server/config/config.go

13 lines
579 B
Go
Raw Normal View History

2023-09-20 10:39:11 +07:00
package config
type ServerConfig struct {
2024-02-05 11:45:54 +07:00
ServerPort int `mapstructure:"SERVER_PORT"`
TusServerPort int `mapstructure:"TUS_SERVER_PORT"`
AllowedOrigins string `mapstructure:"ALLOWED_ORIGINS"`
ClientRedirectURL string `mapstructure:"CLIENT_REDIRECT_URL"`
ClientElectronRedirectURL string `mapstructure:"CLIENT_ELECTRON_REDIRECT_URL"`
ServerDomain string `mapstructure:"SERVER_DOMAIN"`
APIKey string `mapstructure:"API_KEY"`
Debug bool `mapstructure:"DEBUG_MODE"`
2023-09-20 10:39:11 +07:00
}