Files: 660c6b9bd39795033a2324ad53d2c6b960928d2b / 3_actual_friends_remote_module / config.js
386 bytesRaw
1 | const Config = require('ssb-config/inject') |
2 | // const Config = require('ssb-config') |
3 | const ssbKeys = require('ssb-keys') |
4 | const Path = require('path') |
5 | |
6 | const appName = "ssb" |
7 | const opts = null // can set things in here |
8 | |
9 | const config = Config(appName, opts) |
10 | Object.assign(config, { |
11 | appName, |
12 | keys: ssbKeys.loadOrCreateSync(Path.join(config.path, 'secret')), |
13 | }) |
14 | |
15 | module.exports = config |
16 |
Built with git-ssb-web