2020-11-30 09:37:17 +00:00
|
|
|
package csconfig
|
|
|
|
|
|
|
|
/*cscli specific config, such as hub directory*/
|
|
|
|
type CscliCfg struct {
|
|
|
|
Output string `yaml:"output,omitempty"`
|
|
|
|
HubBranch string `yaml:"hub_branch"`
|
|
|
|
SimulationConfig *SimulationConfig `yaml:"-"`
|
|
|
|
DbConfig *DatabaseCfg `yaml:"-"`
|
|
|
|
HubDir string `yaml:"-"`
|
|
|
|
DataDir string `yaml:"-"`
|
|
|
|
ConfigDir string `yaml:"-"`
|
|
|
|
HubIndexFile string `yaml:"-"`
|
|
|
|
SimulationFilePath string `yaml:"-"`
|
2021-02-17 12:53:57 +00:00
|
|
|
PrometheusUrl string `yaml:"prometheus_uri"`
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|