summaryrefslogtreecommitdiffstats
path: root/cmd/platform/init.go
blob: c2b1c6bc06e9a315fc9b808125773896e3e455f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
}