Remove user-facing new-api naming; Docker/network/container names use heicode. Go imports updated; Dockerfiles and workflows ldflags fixed. Made-with: Cursor
8 lines
400 B
Bash
8 lines
400 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
export PGPASSWORD="By@123456."
|
|
echo "-- try user=heicode"
|
|
psql "host=heicode.postgres.database.azure.com port=5432 dbname=heicode user=heicode sslmode=require" -c "select current_user;" || true
|
|
echo "-- try user=heicode@heicode"
|
|
psql "host=heicode.postgres.database.azure.com port=5432 dbname=heicode user=heicode@heicode sslmode=require" -c "select current_user;" || true
|