Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Project ¶
type Project struct { /*** Application Data ***/ Name string `json:"name"` AssetDirectory string `json:"assetdir,omitempty"` ReloadDirectories string `json:"reloaddirs,omitempty"` BuildCommand string `json:"frontend:build"` InstallCommand string `json:"frontend:install"` DevCommand string `json:"frontend:dev"` // Directory to generate the API Module WailsJSDir string `json:"wailsjsdir"` Version string `json:"version"` // The path to the project directory Path string // Build directory BuildDir string // The output filename OutputFilename string `json:"outputfilename"` // The type of application. EG: Desktop, Server, etc OutputType string // The platform to target Platform string // The application author Author Author // The debounce time for hot-reload of the built-in dev server. Default 100 DebounceMS int `json:"debounceMS"` // The url to use to server assets. Default "https://localhost:34115" DevServerURL string `json:"devserverurl"` // Arguments that are forwared to the application in dev mode AppArgs string `json:"appargs"` // contains filtered or unexported fields }
Project holds the data related to a Wails project
Click to show internal directories.
Click to hide internal directories.