Files
mattermost/cmd/platform/init.go
Harrison Healey 5c1049054e PLT-6471 Properly panic when translations can't be loaded (#6414)
* PLT-6471 Properly panic when translations can't be loaded

* Print usage messages when errors occur during CLI initialization

* Reverted behaviour of FindDir and added second return value to it

* Fixed merge conflict
2017-05-23 11:06:25 -04:00

39 lines
763 B
Go

package main
import (
"github.com/mattermost/platform/app"
"github.com/mattermost/platform/model"
"github.com/mattermost/platform/utils"
"github.com/spf13/cobra"
)
func initDBCommandContextCobra(cmd *cobra.Command) error {
config, err := cmd.Flags().GetString("config")
if err != nil {
return err
}
if err := initDBCommandContext(config); err != nil {
// Returning an error just prints the usage message, so actually panic
panic(err)
}
return nil
}
func initDBCommandContext(configFileLocation string) error {
if err := utils.InitAndLoadConfig(configFileLocation); err != nil {
return err
}
utils.ConfigureCmdLineLog()
app.NewServer()
app.InitStores()
if model.BuildEnterpriseReady == "true" {
app.LoadLicense()
}
return nil
}