Skip to content

Commit bfb6fa0

Browse files
committed
Keep deploy-app-runner.sh completely agnostic
The deployment script should remain generic with placeholder values, while config.env.template contains RAW Labs defaults. This ensures: - .github/ scripts are truly stable and reusable - Project-specific values come from deployment/config.env - No hardcoded vendor-specific values in deployment logic
1 parent ed5c929 commit bfb6fa0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/scripts/deploy-app-runner.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ else
1212
echo "⚠️ No deployment/config.env found, using defaults"
1313
fi
1414

15-
# Default configuration (RAW Labs defaults - override in deployment/config.env)
16-
export AWS_REGION="${AWS_REGION:-eu-west-1}"
17-
export AWS_ACCOUNT_ID="${AWS_ACCOUNT_ID:-684130658470}"
15+
# Default configuration (override in deployment/config.env)
16+
export AWS_REGION="${AWS_REGION:-us-east-1}"
17+
export AWS_ACCOUNT_ID="${AWS_ACCOUNT_ID:-YOUR_AWS_ACCOUNT_ID}"
1818
export SERVICE_NAME="${SERVICE_NAME:-your-project-mxcp-server}"
1919
export ECR_REPOSITORY="${ECR_REPOSITORY:-your-project-mxcp-server}"
2020

0 commit comments

Comments
 (0)