Skip to content

Commit ed5c929

Browse files
committed
Restore RAW Labs defaults in config.env.template
Since this template is for RAW Labs internal use, config.env.template should contain RAW's actual AWS account and region defaults: - AWS_ACCOUNT_ID=684130658470 (RAW Labs account) - AWS_REGION=eu-west-1 (RAW Labs default region) This way new projects work out-of-the-box with RAW's infrastructure, and external users can override these values when customizing.
1 parent 2cd5ebc commit ed5c929

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
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 (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}"
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}"
1818
export SERVICE_NAME="${SERVICE_NAME:-your-project-mxcp-server}"
1919
export ECR_REPOSITORY="${ECR_REPOSITORY:-your-project-mxcp-server}"
2020

deployment/config.env.template

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# AWS Configuration for {{PROJECT_NAME}} MXCP Server
2-
# Squirro: Customize these values for your environment
2+
# Customize these values for your environment
33

4-
# AWS Account and Region
5-
AWS_ACCOUNT_ID=YOUR_AWS_ACCOUNT_ID_HERE
4+
# AWS Account and Region (RAW Labs defaults)
5+
AWS_ACCOUNT_ID=684130658470
66
AWS_REGION=eu-west-1
77

88
# Service Configuration

0 commit comments

Comments
 (0)