13 lines
439 B
Bash
13 lines
439 B
Bash
# Host ports (change if they collide on the single server)
|
|
ADMIN_HOST_PORT=5000
|
|
TELLER_HOST_PORT=3001
|
|
|
|
# Baked into the Vite images at build time (set in Gitea secret/variable VITE_API_URL too)
|
|
VITE_API_URL=http://YOUR_SERVER_IP:8080
|
|
VITE_CUSTOMER_APP_URL=http://YOUR_SERVER_IP:3000
|
|
|
|
# Registry images (used by compose / deploy)
|
|
ADMIN_IMAGE=git.koppkb.com/kopkb/qms-fe-admin
|
|
TELLER_IMAGE=git.koppkb.com/kopkb/qms-fe-teller
|
|
IMAGE_TAG=local
|