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
14 lines
411 B
Bash
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
|