From d81f218f2df71ca9c5f9f54b7eb272fe59c84349 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Mon, 19 Jun 2017 20:14:22 +0900 Subject: [PATCH] run on 127.0.0.1:8000 in dev mode --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4b97840..7410784 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ start: go run main.go start-dev: - go run main.go -dev + go run main.go -http 127.0.0.1:8000 -dev misspell: find . -name '*.go' -not -path './vendor/*' | xargs misspell -error