Skip to content

simplytest/banking-frontend

Repository files navigation

🏦 Banking Demo Frontend

This repository hosts the source code for the frontend of our demo banking application.

🏗️ Build

$ pnpm install
$ pnpm run build && pnpm run start

🐋 Docker Setup

To build the docker image, simply build the dockerfile present in the root directory.

$ docker buildx build -t banking-frontend -f docker/Dockerfile .
$ docker run -p 4200:80 banking-frontend

To start frontend from docker contaienr which interacts with localhost backend, use following command:

$ docker run -e VARIANT=DEV -p 4200:80 banking-frontend