git ssb

16+

Dominic / patchbay



Tree: bea9630a530f26bfccd3c236c760ec44e13813b7

Files: bea9630a530f26bfccd3c236c760ec44e13813b7 / index.js

771 bytesRaw
1const ahoy = require('ssb-ahoy')
2const StartMenus = require('./menu')
3
4const plugins = [
5 'ssb-server/plugins/master',
6 'ssb-server/plugins/unix-socket',
7 'ssb-server/plugins/no-auth',
8 'ssb-server/plugins/onion',
9 'ssb-server/plugins/local',
10 'ssb-server/plugins/logging',
11
12 'ssb-legacy-conn',
13 'ssb-replicate',
14 'ssb-friends',
15 'ssb-invite',
16
17 'ssb-blobs',
18 'ssb-ws',
19
20 'ssb-about',
21 'ssb-backlinks',
22 'ssb-chess-db',
23 'ssb-ebt',
24 'ssb-friend-pub',
25 'ssb-meme',
26 'ssb-private',
27 'ssb-query',
28 'ssb-search',
29 'ssb-suggest',
30 'ssb-tangle',
31 'ssb-unread'
32]
33
34ahoy(
35 {
36 title: 'Patchbay',
37 plugins,
38 // appDir: '../patchbay', // only used when ssb-ahoy is symlinked in!
39 uiPath: './ui.js'
40 },
41 (state) => {
42 StartMenus(state)
43 }
44)
45

Built with git-ssb-web