Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 746 Bytes

README.md

File metadata and controls

31 lines (18 loc) · 746 Bytes

Catena-X Portal Frontend

Frontend web application and shared UI components for the Catena-X Portal written in React and Typescript.

Here are three ways to run the application on your machine on http://localhost:3000/

Local build & run

yarn
yarn build
yarn start

Local docker build & run & publish

yarn build:docker
yarn publish:docker
yarn start:docker

Running the image from GitHub container registry

export IMAGE=ghcr.io/catenax-ng/product-portal-frontend:main
docker pull $IMAGE
docker run --rm -d -p 3000:8080 --name cx-portal $IMAGE