Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Feb 5, 2022
1 parent 64eefa3 commit cca92a7
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions commands/local_server_start.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,21 +57,12 @@ var localServerStartCmd = &console.Command{
Flags: []console.Flag{
dirFlag,
&console.BoolFlag{Name: "allow-http", Usage: "Prevent auto-redirection from HTTP to HTTPS"},
&console.StringFlag{
Name: "document-root",
Usage: "Project document root (auto-configured by default)",
},
&console.StringFlag{
Name: "passthru",
Usage: "Project passthru index (auto-configured by default)",
},
&console.StringFlag{Name: "document-root", Usage: "Project document root (auto-configured by default)"},
&console.StringFlag{Name: "passthru", Usage: "Project passthru index (auto-configured by default)"},
&console.IntFlag{Name: "port", DefaultValue: 8000, Usage: "Preferred HTTP port"},
&console.BoolFlag{Name: "daemon", Aliases: []string{"d"}, Usage: "Run the server in the background"},
&console.BoolFlag{Name: "no-humanize", Usage: "Do not format JSON logs"},
&console.StringFlag{
Name: "p12",
Usage: "Certificate path (p12 format)",
},
&console.StringFlag{Name: "p12", Usage: "Certificate path (p12 format)"},
&console.BoolFlag{Name: "no-tls", Usage: "Use HTTP instead of HTTPS"},
},
Action: func(c *console.Context) error {
Expand Down

0 comments on commit cca92a7

Please sign in to comment.