package settings import ( "log" "os" "github.com/goccy/go-yaml" ) var GlobalConfiguration Settings func init() { // Open and read the YAML file yamlFile, err := os.Open("filebrowser.yaml") if err != nil { log.Fatalf("Error opening YAML file: %v", err) } defer yamlFile.Close() stat, err := yamlFile.Stat() if err != nil { log.Fatalf("Error getting file information: %v", err) } yamlData := make([]byte, stat.Size()) _, err = yamlFile.Read(yamlData) if err != nil { log.Fatalf("Error reading YAML data: %v", err) } setDefaults() // Unmarshal the YAML data into the Settings struct err = yaml.Unmarshal(yamlData, &GlobalConfiguration) if err != nil { log.Fatalf("Error unmarshaling YAML data: %v", err) } // Now you have the Settings struct with values from the YAML file // You can access the values like: defaultSettings.Key, defaultSettings.Server.Port, etc. } func setDefaults() { GlobalConfiguration = Settings{ Signup: true, Server: Server{ IndexingInterval: 5, Port: 8080, NumImageProcessors: 1, BaseURL: "", }, Auth: Auth{ Method: "password", Recaptcha: Recaptcha{ Host: "", }, }, } }