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"`
|
2024-01-19 17:53:48 +07:00
|
|
|
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
|
|
|
}
|