clone the repository, then:
~/$ pnpm install
~/$ pnpm dev
will serve the UI on http://localhost:8080
~/$ pnpm run build
1 - Install serve utility
~/$ npm i -g serve
2 - Serve
~/$ serve -s ./packages/main/dist
will serve by default the UI on http://localhost:3000
- set backend using
./src/environment/env.dev.js
or using ENV
HOST
default:0.0.0.0
PORT
default:8080
API_URL
default:http://localhost:3100
~/$ HOST=localhost PORT=8080 API_URL=http://qryn-host:3100 pnpm dev