bms-repository/scripts/project-urls.sh
pfych 0029086b3f
Some checks failed
Build & Lint / build-lint (push) Failing after 2m10s
Deploy / setup (push) Failing after 1m3s
Init
2024-10-12 14:08:09 +11:00

19 lines
368 B
Bash
Executable File

#!/usr/bin/env bash
CURRENT_DIR="$(pwd -P)"
PARENT_PATH="$(
cd "$(dirname "${BASH_SOURCE[0]}")" || exit
pwd -P
)/.."
cd "$PARENT_PATH" || exit
echo "Stage [$1]"
. ./scripts/get-stack-outputs.sh $1 >/dev/null
echo "Web: https://${WebCloudFrontUrl:-}"
echo "Admin: https://${AdminCloudFrontUrl:-}"
echo "API: ${ServiceEndpoint:-}"
cd "$CURRENT_DIR" || exit