Skip to content

Latest commit

 

History

History
58 lines (36 loc) · 946 Bytes

BUILD.md

File metadata and controls

58 lines (36 loc) · 946 Bytes

👁️ qryn View

Build Instructions

clone the repository, then:

install:
~/$ pnpm install
serve (development mode):
~/$ pnpm dev

will serve the UI on http://localhost:8080

Build (dist):
~/$ pnpm run build

Serve (dist):

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

API Endpoint

  • set backend using ./src/environment/env.dev.js or using ENV

Environment Variables:

  • 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