-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.example.js
54 lines (54 loc) · 1.51 KB
/
config.example.js
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
47
48
49
50
51
52
53
54
module.exports = {
name: '/spaces',
authProviders: {
matrix: {
baseUrl: 'https://matrix.org',
allowCustomHomeserver: true,
},
etherpad: {
/* @NOTE: path has to start with "/" */
path: '/write',
baseUrl: 'https://pad.riseup.net/p',
// myPads: {
// api: 'http://etherpad.localhost/mypads/api',
// spacesGroupName: '/spaces',
// },
},
// spacedeck: {
// path: '/sketch',
// baseUrl: 'http://spacedeck.localhost',
// },
// tldraw: {
// path: '/draw',
// },
},
account: {
allowAddingNewEmails: true,
},
chat: {
pathToElement: '//localhost/element',
},
// contextRootSpaceRoomId: '!gB.....Ewlvdq:matrix.org',
/* @NOTE: enable terms and conditions dialog after first/initial login; */
/* the terms and conditions dialog/etc. is handled via `pages/intro.js` */
intro: {
terms: false,
},
/* @NOTE: clear(!) client-side localStorage if value defined in `versionToken` is */
/* *not_equal* to value stored in or does *not_exist* in client-side localStorage */
// localStorage: {
// clearAfterUpgrade: true,
// versionToken: "1",
// },
templates: {
// context: [
// "context",
// ],
item: [
'etherpad',
// 'spacedeck',
// 'tldraw',
'link',
],
},
};