feat : init switch app hosting to aws

This commit is contained in:
GuillaumeSD
2025-04-16 03:22:45 +02:00
parent 86effaef48
commit ef72b600aa
6 changed files with 697 additions and 9 deletions

8
cdk/app.ts Normal file
View File

@@ -0,0 +1,8 @@
import * as cdk from "aws-cdk-lib";
import { AppStack } from "./app-stack";
const app = new cdk.App();
new AppStack(app, "FreechessWebapp", {
env: { region: "eu-west-3" },
});