Quick start¶
First you need to install a Lino developer environment as described in Install your Lino developer environment.
Install NodeJS on your computer:
$ sudo apt install nodejs npm
Install the Lino React project in NodeJS:
$ go react
$ npm install
If this fails, it might be caused by version conflicts caused by earlier installation attempts on your machine. Here is how to restart from scratch:
$ rm -rf node_modules
$ rm package-lock.json
$ npm install
Make your first build:
$ mkdir -p lino_react/react/static/media
$ npm run build
Now let’s do a local change and test it.
We build locally and then commit the statics.
TODO