forked from ssbc/patchwork
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver-process.js
More file actions
46 lines (42 loc) · 1.39 KB
/
Copy pathserver-process.js
File metadata and controls
46 lines (42 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
var fs = require('fs')
var Path = require('path')
var electron = require('electron')
var spawn = require('child_process').spawn
var fixPath = require('fix-path')
var createSbot = require('scuttlebot')
.use(require('scuttlebot/plugins/master'))
.use(require('scuttlebot/plugins/gossip'))
.use(require('scuttlebot/plugins/replicate'))
.use(require('ssb-friends'))
.use(require('ssb-blobs'))
.use(require('ssb-backlinks'))
.use(require('ssb-private'))
.use(require('scuttlebot/plugins/invite'))
.use(require('scuttlebot/plugins/local'))
.use(require('scuttlebot/plugins/logging'))
.use(require('ssb-query'))
.use(require('ssb-about'))
.use(require('ssb-search'))
.use(require('ssb-ws'))
// .use(require('ssb-ebt')) // enable at your own risk!
.use(require('./sbot'))
fixPath()
module.exports = function (ssbConfig) {
var context = {
sbot: createSbot(ssbConfig),
config: ssbConfig
}
ssbConfig.manifest = context.sbot.getManifest()
fs.writeFileSync(Path.join(ssbConfig.path, 'manifest.json'), JSON.stringify(ssbConfig.manifest))
electron.ipcRenderer.send('server-started', ssbConfig)
// attempt to run git-ssb if it is installed and in path
var gitSsb = spawn('git-ssb', [ 'web' ], {
stdio: 'inherit'
})
gitSsb.on('error', () => {
console.log('git-ssb is not installed, or not available in path')
})
process.on('exit', () => {
gitSsb.kill()
})
}