Added append-port flag
authorKrisztián Szabó <krisztian.szabo@netlife.hu>
Sat, 28 Dec 2013 19:37:44 +0000 (20:37 +0100)
committerspf13 <steve.francia@gmail.com>
Sun, 29 Dec 2013 03:01:36 +0000 (22:01 -0500)
commands/server.go

index b3d026421efc5bfdae484e1b2862c78e77e0a26f..cb33aedff043ad00ac5b8d3eec8cd27a8623f557 100644 (file)
@@ -23,10 +23,12 @@ import (
 
 var serverPort int
 var serverWatch bool
+var serverAppend bool
 
 func init() {
        serverCmd.Flags().IntVarP(&serverPort, "port", "p", 1313, "port to run the server on")
        serverCmd.Flags().BoolVarP(&serverWatch, "watch", "w", false, "watch filesystem for changes and recreate as needed")
+       serverCmd.Flags().BoolVarP(&serverAppend, "append-port", "", true, "append port to baseurl")
 }
 
 var serverCmd = &cobra.Command{
@@ -49,7 +51,11 @@ func server(cmd *cobra.Command, args []string) {
                BaseUrl = "http://" + BaseUrl
        }
 
-       Config.BaseUrl = strings.TrimSuffix(BaseUrl, "/") + ":" + strconv.Itoa(serverPort)
+    if serverAppend {
+        Config.BaseUrl = strings.TrimSuffix(BaseUrl, "/") + ":" + strconv.Itoa(serverPort)
+    } else {
+        Config.BaseUrl = strings.TrimSuffix(BaseUrl, "/")
+    }
 
        build(serverWatch)