Skip to content

Commit

Permalink
fix listen port
Browse files Browse the repository at this point in the history
  • Loading branch information
khorevaa committed Sep 6, 2021
1 parent a4a226f commit 1ff9fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func main() {

app.BoolOptPtr(&debug, "debug", false, "Enable debug")
app.BoolOptPtr(&prefork, "prefork", false, "Enable prefork in Production")
app.StringOptPtr(&port, "port p", "localhost:3001", "Port to listen on")
app.StringOptPtr(&port, "port p", ":3001", "Port to listen on")
app.StringOptPtr(&appData, "dir", "", "App data dir")
app.StringOptPtr(&preConfigureAppServersFile, "config c", "", "File to load preconfigure app servers")

Expand Down

0 comments on commit 1ff9fed

Please sign in to comment.