mirror of
https://github.com/amark/gun.git
synced 2025-06-11 00:26:45 +00:00
11 lines
279 B
JavaScript
11 lines
279 B
JavaScript
var web = require('../coalesce')
|
|
, opt = {port: 8080, sec: -2};
|
|
|
|
opt.run = ['./serverA'];
|
|
opt.node = {
|
|
src: "http://localhost:8080/com"
|
|
,key: "I am a secret key that establishes trustworthiness as a root system machine"
|
|
}
|
|
|
|
web(opt);
|
|
console.log("initA @ "+ opt.port); |