a working web stack hosted at app.syncrow.me

This commit is contained in:
Ammar Qaffaf
2025-06-29 20:47:00 -04:00
parent 774a1533f5
commit 337e79b770
9 changed files with 906 additions and 1 deletions

14
bin/web-stack.ts Normal file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env node
import 'source-map-support/register';
import * as cdk from 'aws-cdk-lib';
import { WebStack } from '../infrastructure/web-stack';
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',
},
certificateArn: app.node.tryGetContext('certificateArn'),
});