Skip to content

Commit

Permalink
update config.example.js with localStorage and templates object
Browse files Browse the repository at this point in the history
  • Loading branch information
andirueckel committed Apr 18, 2024
1 parent cfed0e3 commit 23bea27
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions config.example.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
allowCustomHomeserver: true,
},
etherpad: {
// important: path has to start with "/"
/* @NOTE: path has to start with "/" */
path: '/write',
baseUrl: 'https://pad.riseup.net/p',
// myPads: {
Expand All @@ -18,12 +18,32 @@ module.exports = {
// path: '/sketch',
// baseUrl: 'http://spacedeck.localhost',
// },
// tldraw: {
// path: '/draw',
// },
},
// contextRootSpaceRoomId: '!gB.....Ewlvdq:matrix.org',
account: {
allowAddingNewEmails: true,
},
chat: {
pathToElement: '//localhost/element',
},
// contextRootSpaceRoomId: '!gB.....Ewlvdq:matrix.org',
/* @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',
],
},
};

0 comments on commit 23bea27

Please sign in to comment.