developer-handbook

Local development

MacOS

All dependencies for the developer handbook is handled with yarn.

# install nodejs with brew
brew install node

# install yarn with npm
npm install -g yarn

# install dependencies with yarn
yarn

# start local development server
yarn run dev
1
2
3
4
5
6
7
8
9
10
11