For local development please follow the instructions below.
Supported operating systems:
- Linux
- macOS
- Windows 10+
- Docker - if you want to build a Docker image
Node:
- NodeJS >= 14 <= 16
- NPM >= 6.x
- Yarn >= 1.22 < 2
You need to have a working and active NodeJS installation.
Additionally you need to run the following commands in order to start the development application:
-
yarn
npm install -g [email protected]
-
dependency installation
yarn install
-
start React in development mode
yarn start
-
access the application in the browser via
http://localhost:3000
If you only want to build a Docker image of the frontend, you might want to run
docker build . -t frontend
and to serve it on http://localhost
docker run -p 80:80 frontend