There’s and env var LISTEN which you can set, eg: LISTEN=0.0.0.0:8080
I tried this both like this:
export LISTEN=0.0.0.0:8080
npm start
in Patchbay and
export LISTEN=0.0.0.0:8080
npm install
The above don't really work, this is probably because let host = env::var("LISTEN").unwrap_or_else(|_| "localhost:8080".to_owned())8;
in ssb-patchql is evaluated on compile-time (and not function()
-run-time), so all builds on the build page (downloaded in jsbot-patchql) are locked to localhost
. But that's super fine for now!