Skip to content

1.5.0 : custom notes on the first load

Compare
Choose a tag to compare
@Jimskapt Jimskapt released this 10 Nov 09:27
· 5 commits to master since this release

You can now set up on the "server-side" the webapp to generate custom notes when there is no notes created.

Just add a the file settings.js on the root of the app, with following content :

(extract of docs/settings.js)

const INITIAL_STATE = {
    contents: {
        'en-US': [
            {
                _id: 'demo-0',
                title: 'What is Lambda-Badger ?',
                content: 'You are currently using it.\n\nIt is a webapplication [...]'
            },
        ],
    },
};