Build and Deploy Setup
This document provides instructions on how to clone, build, and run the UBI Verification SDK both locally and using Docker.
A. Running Locally without Docker
Clone the Repository
git clone https://github.com/PSMRI/ubi-verification-sdk cd ubi-verification-sdkInstall Dependencies
npm installRun the Application
npm startThe application will be available at
http://localhost:3000.You can access the Swagger documentation at http://localhost:3000/documentation.
B. Running using Docker Compose
Start the Application
docker-compose up --buildThis will build and start the application along with any dependencies defined in the
docker-compose.ymlfile.Run in Detached Mode
docker-compose up -dThis will start the services in the background.
The application will be available at http://localhost:3000, and you can access the Swagger documentation at http://localhost:3000/documentation.
