1.5.0 : custom notes on the first load
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 [...]'
},
],
},
};