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;