We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a5f4b6 commit 31cff9fCopy full SHA for 31cff9f
main.go
@@ -124,14 +124,14 @@ func main() {
124
r.POST("/v1/db/:dbname/move", handleMove) // Move keys, with buckets and keys specified by JSON
125
r.POST("/v1/db/:dbname/create", handleCreateDB) // Move keys, with buckets and keys specified by JSON
126
127
- fmt.Printf("boltdb-server (v. %s) running on %s:%s\n", version, GetLocalIP(), port)
+ fmt.Printf("boltdb-server (v.%s) running on http://%s:%s\n", version, GetLocalIP(), port)
128
r.Run(":" + port) // listen and serve on 0.0.0.0:8080
129
return nil
130
}
131
app.Flags = []cli.Flag{
132
cli.StringFlag{
133
Name: "port, p",
134
- Value: "8080",
+ Value: "8050",
135
Usage: "port to use to listen",
136
},
137
0 commit comments