From 2ca26ba03983e837175046eb4fa4320e003081dc Mon Sep 17 00:00:00 2001 From: David Date: Wed, 28 Sep 2016 13:04:55 -0700 Subject: [PATCH] Added port gotchas to client/README --- client/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/client/README.md b/client/README.md index 93405d038..9ec2298cf 100644 --- a/client/README.md +++ b/client/README.md @@ -39,3 +39,11 @@ The Scope UI uses [debug](https://www.npmjs.com/package/debug) for logging, e.g. const debug = require('debug')('scope:app-store'); debug('Store log message'); ``` + +## Gotchas + +Got a blank screen when loading `http://localhost:4042`? + +Make sure you are accessing the right machine: +If you're running `npm start` on a virtual machine with IP 10.0.0.8, you need to point your browser to `http://10.0.0.8:4042`. +Also, you may need to manually configure the virtual machine to expose ports 4041 (webpack-dev-server) and 4042 (express proxy).