Skip to content

Latest commit

 

History

History
59 lines (40 loc) · 986 Bytes

README.md

File metadata and controls

59 lines (40 loc) · 986 Bytes

Getting Started

For local development please follow the instructions below.

Requirements

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

Prerequisites for development

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

Building & serving a Docker image

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