mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* model -> public/model * plugin -> public/plugin * public/model/utils -> public/utils * platform/shared/mlog -> public/shared/mlog * platform/shared/i18n -> public/shared/i18n * platform/shared/markdown -> public/shared/markdown * platform/services/timezones -> public/shared/timezones * channels/einterfaces -> einterfaces * expose public/ submodule * go mod tidy * .github: cache-dependency-path, setup-go-work * modules-tidy for public/ too * remove old gomodtidy
47 lines
1.1 KiB
Go
47 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/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)
|
|
}
|
|
}
|