mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
39 lines
790 B
Go
39 lines
790 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.Global().NewServer()
|
|
app.Global().InitStores()
|
|
if model.BuildEnterpriseReady == "true" {
|
|
app.Global().LoadLicense()
|
|
}
|
|
|
|
return nil
|
|
}
|