git ssb

16+

Dominic / patchbay



Tree: d119c36e794cfcba29c54f4f2f6da4f6e4d0fb77

Files: d119c36e794cfcba29c54f4f2f6da4f6e4d0fb77 / index.js

879 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
16 'ssb-blobs',
17 'ssb-ws',
18
19 'ssb-about',
20 'ssb-backlinks',
21 'ssb-chess-db',
22 'ssb-ebt',
23 'ssb-friend-pub',
24 'ssb-meme',
25 'ssb-private',
26 'ssb-query',
27 'ssb-search',
28 'ssb-suggest',
29 'ssb-tangle',
30 'ssb-unread',
31
32 'ssb-invite',
33
34 'ssb-device-address', // for peer-invites
35 'ssb-identities', // for peer invites
36 'ssb-peer-invites'
37]
38
39ahoy(
40 {
41 title: 'Patchbay',
42 plugins,
43 // appDir: '../patchbay', // only used when ssb-ahoy is symlinked in!
44 uiPath: './ui.js'
45 },
46 (state) => {
47 StartMenus(state)
48 }
49)
50

Built with git-ssb-web