Files
heicode/new-api/.retry_pg.sh
T
gongzhiyong 9bf3a73a75 feat: align heicode web-manager branding and deployment docs
Unify website and manager experience with updated logo and manager entry links, and document the current production topology and URLs in CLAUDE.md for consistent future operations.

Made-with: Cursor
2026-04-30 20:23:46 +08:00

14 lines
411 B
Bash

#!/usr/bin/env bash
set -e
export PGHOST=heicode.postgres.database.azure.com
export PGPORT=5432
export PGDATABASE=heicode
export PGPASSWORD="Myadmin@123456."
export PGSSLMODE=require
echo "[try-1] PGUSER=heicode"
PGUSER=heicode psql -c "select current_user, current_database();" || true
echo "[try-2] PGUSER=heicode@heicode"
PGUSER='heicode@heicode' psql -c "select current_user, current_database();" || true