This is source code for new CMSSDT IB page. It must be transpiled before deploying.
# Start node container
docker run -it --rm --name my-running-script -v "$PWD":/usr/src/app:z -w /usr/src/app -p 3000:3000 node:18 bash # starts NPM in docker enviroment
# populate enviroment with latest testing data
./public/updateData.sh
# install dependencies
npm install
# For development server
npm run start
# For testing the changes in production build
npm run build
npx serve -s buildOpen browser and access localhost:3000