TypeError: Cannot read property 'public_interfaces' of undefined
EricCat opened this issue · 3 comments
EricCat commented
I used git clone https://github.com/bipio-server/bipio.git
and then make install
.
When I run $ node src/server.js
. I got the error: TypeError: Cannot read property 'public_interfaces' of undefined
.
TraceInfo:
at Object.<anonymous> (node_modules/bipio/src/bootstrap.js:158:23)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at Object.<anonymous> (node_modules/bipio/src/server.js:23:17)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
mjpearson commented
Hi, that happens when make install fails to complete - you should get an interactive setup and it should confirm that config has been written during 'make install'.
Install will fail if any npm dependencies failed to download. From the bipio server directory try 'rm -rf node_modules; make install' to retry.
did you notice any errors during setup?