This repository hosts the source code for the frontend of our demo banking application.
$ pnpm install
$ pnpm run build && pnpm run start
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