mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
It was a good decision in hindsight to keep the public module as 0.x because this would have been a breaking change again. https://mattermost.atlassian.net/browse/MM-53032 ```release-note Changed the Go module path from github.com/mattermost/mattermost-server/server/v8 to github.com/mattermost/mattermost/server/v8. For the public facing module, it's path is also changed from github.com/mattermost/mattermost-server/server/public to github.com/mattermost/mattermost/server/public ```
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
// generateDefaultConfig writes default config to outputFile.
|
|
func generateDefaultConfig(outputFile *os.File) error {
|
|
defaultCfg := &model.Config{}
|
|
defaultCfg.SetDefaults()
|
|
if data, err := json.MarshalIndent(defaultCfg, "", " "); err != nil {
|
|
return err
|
|
} else if _, err := outputFile.Write(data); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
outputFile := os.Getenv("OUTPUT_CONFIG")
|
|
if outputFile == "" {
|
|
fmt.Println("Output file name is missing. Please set OUTPUT_CONFIG env variable to absolute path")
|
|
os.Exit(2)
|
|
}
|
|
if _, err := os.Stat(outputFile); !os.IsNotExist(err) {
|
|
_, _ = fmt.Fprintf(os.Stderr, "File %s already exists. Not overwriting!\n", outputFile)
|
|
os.Exit(2)
|
|
}
|
|
|
|
if file, err := os.Create(outputFile); err == nil {
|
|
err = generateDefaultConfig(file)
|
|
_ = file.Close()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
} else {
|
|
panic(err)
|
|
}
|
|
}
|