Skip to content
Snippets Groups Projects
Commit c24e56d2 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

run the keysigner from the local dev script #460

parent c8dbdbf4
No related branches found
No related tags found
No related merge requests found
......@@ -13,13 +13,17 @@ var daemonsToRun = {
PORT: 10000,
HOST: HOST
},
example: {
path: path.join(__dirname, "..", "scripts", "serve_example.js"),
PORT: 10001,
HOST: HOST
},
browserid: {
PORT: 10002,
HOST: HOST
},
example: {
path: path.join(__dirname, "..", "scripts", "serve_example.js"),
PORT: 10001,
keysigner: {
PORT: 10003,
HOST: HOST
}
};
......@@ -30,6 +34,7 @@ process.env['LOG_TO_CONSOLE'] = 1;
// all spawned processes will communicate with the local browserid
process.env['BROWSERID_URL'] = 'http://' + HOST + ":10002";
process.env['VERIFIER_URL'] = 'http://' + HOST + ":10000/verify";
process.env['KEYSIGNER_URL'] = 'http://' + HOST + ":10003";
Object.keys(daemonsToRun).forEach(function(k) {
Object.keys(daemonsToRun[k]).forEach(function(ek) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment