From 87c7de93c8a9d8a14857214cb8ab5e1a1c599051 Mon Sep 17 00:00:00 2001 From: Mark Nadal Date: Sat, 19 Sep 2020 14:45:55 -0700 Subject: [PATCH] tweak for first in-prod testing --- examples/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/http.js b/examples/http.js index 9c011f49..889470d4 100644 --- a/examples/http.js +++ b/examples/http.js @@ -16,7 +16,7 @@ config.server = require('http').createServer(Gun.serve(__dirname)); } - var gun = Gun({web: config.server.listen(config.port)}); + var gun = Gun({web: config.server.listen(config.port), rad: false, localStorage: false}); // TODO: ONLY TEMPORARILY!!! UNDO TO GET RAD ONCE TESTED!!!! console.log('Relay peer started on port ' + config.port + ' with /gun'); module.exports = gun;