From 53e095783154c8b278d5c9af0c476f107ece6b83 Mon Sep 17 00:00:00 2001 From: Enzo Rivello Date: Fri, 29 Jul 2016 15:36:36 +0100 Subject: [PATCH] instructing wsrv to start with 0.0.0.0 instead that with localhost, will make it compatible with the docker container --- demo-shell-ng2/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo-shell-ng2/package.json b/demo-shell-ng2/package.json index b74ae133fe..117fed496f 100644 --- a/demo-shell-ng2/package.json +++ b/demo-shell-ng2/package.json @@ -9,7 +9,7 @@ "start": "npm run tslint && concurrently \"npm run tsc:w\" \"license-check\" \"npm run serve\" ", "tsc": "tsc", "tsc:w": "tsc -w", - "serve": "wsrv -o -s -l -p 3000 -x ./server/versions.js", + "serve": "wsrv -o -s -l -p 3000 -a 0.0.0.0 -x ./server/versions.js", "typings": "typings install", "tslint": "tslint -c tslint.json *.ts && tslint -c tslint.json app/{,**/}**.ts", "licensecheck": "license-check"