mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Fixing config file watch and config reload on license save * Fixing config file watch and config reload on license save * Fixing build error * Fixing locking issue
49 lines
934 B
Go
49 lines
934 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/mattermost/platform/app"
|
|
"github.com/mattermost/platform/model"
|
|
"github.com/mattermost/platform/utils"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func doLoadConfig(filename string) (err string) {
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
err = fmt.Sprintf("%v", r)
|
|
}
|
|
}()
|
|
utils.TranslationsPreInit()
|
|
utils.EnableConfigFromEnviromentVars()
|
|
utils.LoadConfig(filename)
|
|
utils.InitializeConfigWatch()
|
|
utils.EnableConfigWatch()
|
|
return ""
|
|
}
|
|
|
|
func initDBCommandContextCobra(cmd *cobra.Command) error {
|
|
config, err := cmd.Flags().GetString("config")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
initDBCommandContext(config)
|
|
|
|
return nil
|
|
}
|
|
|
|
func initDBCommandContext(configFileLocation string) {
|
|
if errstr := doLoadConfig(configFileLocation); errstr != "" {
|
|
return
|
|
}
|
|
|
|
utils.ConfigureCmdLineLog()
|
|
|
|
app.NewServer()
|
|
app.InitStores()
|
|
if model.BuildEnterpriseReady == "true" {
|
|
app.LoadLicense()
|
|
}
|
|
}
|