Adds CDK deployment instructions and updates region

Enhances the README with CDK deployment commands.
This commit is contained in:
Ammar Qaffaf
2025-07-07 09:38:09 +03:00
parent 337e79b770
commit 99b13ee062
4 changed files with 15 additions and 2 deletions

View File

@ -8,7 +8,7 @@ const app = new cdk.App();
new WebStack(app, 'SyncrowWebStack', {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION || 'us-east-2',
region: 'me-central-1',
},
certificateArn: app.node.tryGetContext('certificateArn'),
});