From a0ed8dee8d130038f5189100b8d52864d61bc0f2 Mon Sep 17 00:00:00 2001 From: "Justin Hornosty (jjrh)" Date: Tue, 5 Dec 2017 12:46:22 -0500 Subject: [PATCH] allow use of alternative port to for HTTPSERVE ( HTTPSERVE_PORT ) --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8bad0117c..9ff680ead 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ CHROMIUM ?= ./node_modules/.bin/run-headless-chromium CLEANCSS ?= ./node_modules/clean-css-cli/bin/cleancss --skip-rebase ESLINT ?= ./node_modules/.bin/eslint HTTPSERVE ?= ./node_modules/.bin/http-server +HTTPSERVE_PORT ?= 8000 PAPER = PO2JSON ?= ./node_modules/.bin/po2json RJS ?= ./node_modules/.bin/r.js @@ -51,11 +52,11 @@ help: .PHONY: serve serve: dev - $(HTTPSERVE) -p 8000 -c-1 + $(HTTPSERVE) -p $(HTTPSERVE_PORT) -c-1 .PHONY: serve_bg serve_bg: dev - $(HTTPSERVE) -p 8000 -c-1 -s & + $(HTTPSERVE) -p $(HTTPSERVE_PORT) -c-1 -s & ######################################################################## ## Translation machinery @@ -206,7 +207,7 @@ eslint: stamp-npm .PHONY: check check: eslint - LOG_CR_VERBOSITY=INFO $(CHROMIUM) http://localhost:8000/tests.html + LOG_CR_VERBOSITY=INFO $(CHROMIUM) http://localhost:$(HTTPSERVE_PORT)/tests.html ########################################################################