Skip to content

Commit 742f561

Browse files
author
peruna
committed
CI fixes
1 parent a680b2f commit 742f561

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/stack-smoke.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
cat > .env <<'EOF'
3636
APP_TITLE=LibreChat CI
3737
ENDPOINTS=openAI,agents
38-
DOMAIN_CLIENT=http://localhost:3080
39-
DOMAIN_SERVER=http://localhost:3080
38+
DOMAIN_CLIENT=http://localhost:3081
39+
DOMAIN_SERVER=http://localhost:3081
4040
NO_INDEX=true
4141
TRUST_PROXY=1
4242

scripts/ci/smoke.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ set -Eeuo pipefail
44
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
55
cd "${ROOT_DIR}"
66

7+
INGRESS_URL="${INGRESS_URL:-http://127.0.0.1:3081}"
8+
79
compose_files=(
810
-f docker-compose.yml
911
-f compose.hardening.yml
@@ -60,7 +62,7 @@ compose \
6062
up -d
6163

6264
log "Waiting for LibreChat ingress"
63-
wait_http "http://127.0.0.1:3080/login"
65+
wait_http "${INGRESS_URL}/login"
6466

6567
log "Waiting for code interpreter health endpoint"
6668
wait_http "http://127.0.0.1:8001/health"

0 commit comments

Comments
 (0)