Files: a1cc908405943c59caa0f25427931456791123b8 / config.js
805 bytesRaw
1 | const nest = require('depnest') |
2 | const Config = require('ssb-config/inject') |
3 | const ssbKeys = require('ssb-keys') |
4 | const Path = require('path') |
5 | |
6 | const appName = process.env.ssb_appname || 'ssb' |
7 | const opts = appName == 'ssb' |
8 | ? null |
9 | : null // require('./default-config.json') |
10 | |
11 | exports.gives = nest('config.sync.load') |
12 | exports.create = (api) => { |
13 | var config |
14 | return nest('config.sync.load', () => { |
15 | if (!config) { |
16 | console.log('LOADING config') |
17 | config = Config(appName, opts) |
18 | config.keys = ssbKeys.loadOrCreateSync(Path.join(config.path, 'secret')) |
19 | |
20 | // HACK: fix offline on windows by specifying 127.0.0.1 instead of localhost (default) |
21 | config.remote = `net:127.0.0.1:${config.port}~shs:${config.keys.id.slice(1).replace('.ed25519', '')}` |
22 | } |
23 | return config |
24 | }) |
25 | } |
26 | |
27 |
Built with git-ssb-web