Healthy UI Getting started React via CRA 1. get nvm https://github.com/nvm-sh/nvm 2. install the right node / npm version with nvm $ cd react-app && nvm use 3. install node modules $ npm install 4. start the webpack dev server $ npm run start Python / Flask via venv 1. create the venv $ python -m venv .venv 2. activate it $ source .venv/bin/activate 3. install reqs via pip pip install -r requirements.txt via docker