Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 601 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 601 Bytes

🏦 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