Documentation ¶
Index ¶
Constants ¶
View Source
const ( ServerDescription = "Starts a gitbase server instance" ServerHelp = ServerDescription + "\n\n" + "By default when gitbase encounters and error in a repository it\n" + "stops the query. With GITBASE_SKIP_GIT_ERRORS variable it won't\n" + "complain and just skip those rows or repositories." )
View Source
const ( VersionDescription = "Show the version information" VersionHelp = VersionDescription )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Server ¶
type Server struct { Verbose bool `short:"v" description:"Activates the verbose mode"` Git []string `` /* 131-byte string literal not displayed */ Siva []string `long:"siva" description:"Path where the siva repositories are located, multiple directories can be defined. Accepts globs."` Host string `short:"h" long:"host" default:"localhost" description:"Host where the server is going to listen"` Port int `short:"p" long:"port" default:"3306" description:"Port where the server is going to listen"` User string `short:"u" long:"user" default:"root" description:"User name used for connection"` Password string `short:"P" long:"password" default:"" description:"Password used for connection"` PilosaURL string `long:"pilosa" default:"http://localhost:10101" description:"URL to your pilosa server" env:"PILOSA_ENDPOINT"` IndexDir string `` /* 160-byte string literal not displayed */ DisableSquash bool `long:"no-squash" description:"Disables the table squashing."` // IgnoreGitErrors by default when gitbase encounters and error in a // repository it stops the query. With this parameter it won't complain and // just skip those rows or repositories. SkipGitErrors bool // contains filtered or unexported fields }
Server represents the `server` command of gitbase cli tool.
Click to show internal directories.
Click to hide internal directories.