feat: add repo importing

This commit is contained in:
2026-01-17 19:32:37 -08:00
parent 831259a6a6
commit fb62081ca8
28 changed files with 1823 additions and 116 deletions

8
cdk/bin/cdk.ts Normal file
View File

@@ -0,0 +1,8 @@
import * as cdk from 'aws-cdk-lib/core';
import { GhostV2Stack } from '../lib/cdk-stack';
const app = new cdk.App();
new GhostV2Stack(app, "GhostV2Stack-dev", {
env: { region: "ca-central-1", account: process.env.AWS_ACCOUNT_ID! },
});