TenantAtlas/scripts/platform-sail
Ahmed Darrazi b515796839
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 53s
feat: finalize global shell context contract
2026-04-18 15:59:02 +02:00

17 lines
457 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
# Platform-only compatibility wrapper for repo-root tooling.
# Official root workspace scripts may orchestrate through this helper, but the
# authoritative Sail runtime still lives under apps/platform.
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
APP_DIR="${SCRIPT_DIR}/../apps/platform"
cd "${APP_DIR}"
export COMPOSE_PROJECT_NAME="${COMPOSE_PROJECT_NAME:-tenantatlas}"
exec ./vendor/bin/sail "$@"