Files
revel-cmd/model/command/run.go
notzippy@gmail.com 07d67846c1 Restructured command config
Removed go/build reference in clean
2020-04-26 22:28:46 -07:00

9 lines
409 B
Go

package command
type (
Run struct {
ImportCommand
Mode string `short:"m" long:"run-mode" description:"The mode to run the application in"`
Port int `short:"p" long:"port" default:"-1" description:"The port to listen" `
NoProxy bool `short:"n" long:"no-proxy" description:"True if proxy server should not be started. This will only update the main and routes files on change"`
}
)