First try at pipeline publish
Some checks failed
Build and Publish Portfolio / build (push) Successful in 24s
Build and Publish Portfolio / publish (push) Failing after 3m9s

This commit is contained in:
2025-08-07 22:31:49 -05:00
parent a85c176d28
commit b3f30bc715
9 changed files with 801 additions and 9 deletions

13
aws/index.ts Normal file
View File

@@ -0,0 +1,13 @@
import { ForgePortfolioStack } from "./stack.ts";
import * as cdk from 'aws-cdk-lib';
const app = new cdk.App();
new ForgePortfolioStack(app, 'JaredForgePortfolio', {
env: {
account: process.env.AWS_ACCOUNT,
region: 'us-east-1',
},
domainName: 'portfolio.kling.dev',
hostedZoneId: process.env.AWS_ROUTE53_ZONE
});