Documentation ¶
Index ¶
Constants ¶
View Source
const ( Version = "1.0.10" GitRemotePath = "github.com/W3-Engineers-Ltd/Radical" )
Variables ¶
View Source
var Conf = struct { Version int WatchExts []string `json:"watch_ext" yaml:"watch_ext"` WatchExtsStatic []string `json:"watch_ext_static" yaml:"watch_ext_static"` GoInstall bool `json:"go_install" yaml:"go_install"` // Indicates whether execute "go install" before "go build". DirStruct dirStruct `json:"dir_structure" yaml:"dir_structure"` CmdArgs []string `json:"cmd_args" yaml:"cmd_args"` Envs []string Bale bale Database database EnableReload bool `json:"enable_reload" yaml:"enable_reload"` EnableNotification bool `json:"enable_notification" yaml:"enable_notification"` Scripts map[string]string `json:"scripts" yaml:"scripts"` }{ WatchExts: []string{".go"}, WatchExtsStatic: []string{".html", ".tpl", ".js", ".css"}, GoInstall: true, DirStruct: dirStruct{ Others: []string{}, }, CmdArgs: []string{}, Envs: []string{}, Bale: bale{ Dirs: []string{}, IngExt: []string{}, }, Database: database{ Driver: "mysql", }, EnableNotification: true, Scripts: map[string]string{}, }
Functions ¶
func LoadConfig ¶
func LoadConfig()
LoadConfig loads the radical tool configuration. It looks for radicalfile or radical.json in the current path, and falls back to default configuration in case not found.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.