github.com/terhitormanen/cmd@v1.1.4/model/command/build.go (about)

     1  package command
     2  
     3  type (
     4  	Build struct {
     5  		ImportCommand
     6  		TargetPath string `short:"t" long:"target-path" description:"Path to target folder. Folder will be completely deleted if it exists" required:"false"`
     7  		Mode       string `short:"m" long:"run-mode" description:"The mode to run the application in"`
     8  		CopySource bool   `short:"s" long:"include-source" description:"Copy the source code as well"`
     9  	}
    10  )