git ssb

16+

Dominic / patchbay



Tree: 43d2132c3136da4714c5e7ab230110cbd1f99cf8

Files: 43d2132c3136da4714c5e7ab230110cbd1f99cf8 / index.js

881 bytesRaw
1const ahoy = require('ssb-ahoy')
2const StartMenus = require('./menu')
3
4const plugins = [
5 'ssb-master',
6 'ssb-unix-socket',
7 'ssb-no-auth',
8 'ssb-onion',
9 'ssb-local',
10 'ssb-logging',
11
12 'ssb-legacy-conn',
13 // 'ssb-conn', // TODO requires secret-stack@^6.2.0 , but ssb-server shrinkwrapped @6.1.2
14 'ssb-replicate',
15 'ssb-friends',
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 'ssb-invite',
34
35 'ssb-device-address', // for peer-invites
36 'ssb-identities', // for peer invites
37 'ssb-peer-invites'
38]
39
40ahoy(
41 {
42 title: 'Patchbay',
43 plugins,
44 // appDir: '../patchbay', // only used when ssb-ahoy is symlinked in!
45 uiPath: './ui.js'
46 },
47 (state) => {
48 StartMenus(state)
49 }
50)
51

Built with git-ssb-web