I have the following React project structure
project/
- cdk/
- bin/
- cdk.ts
- lib/
- pipeline.stack.ts
- etc.
- src/
- all files related to React app
package.json (of the React)
NOTE: In other words the cdk
was initialized in existing React app.
The cdk.ts
file looks like this
#!/usr/bin/env node
import "source-map-support/register";
import * as cdk from "aws-cdk-lib";
import { PipelineStack } from "../lib/pipeline.stack";
const app = new cdk.App();
new PipelineStack(app, "PipelineStack", {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION,
},
});
app.synth();
The pipeline.stack.ts
file looks like this
import * as cdk from "aws-cdk-lib";
import { CodePipeline, CodePipelineSource, ShellStep } from "aws-cdk-lib/pipelines";
import { Construct } from "constructs";
export class PipelineStack extends cdk.Stack {
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
// Define the pipeline
const pipeline = new CodePipeline(this, "Pipeline", {
pipelineName: "MyPipeline",
synth: new ShellStep("Synth", {
input: CodePipelineSource.gitHub("<OWNER>/<PROJECT>", "dev"),
commands: ["cd cdk", "npm ci", "npm run build", "npx cdk synth"],
primaryOutputDirectory: "cdk/cdk.out",
}),
});
}
}
In order to create this pipeline on AWS, I had to manually run cdk deploy --profile my-profile
. After that, I was able to trigger the pipeline by committing code to the dev branch of my GitHub repository.
Now, I need to add the missing steps:
- Build the React App.
- Deploy artifacts to S3 and CloudFront.
I'm not sure where to find the information on how to do this using aws-cdk-lib/pipelines
. Could you help me understand how to add the missing code to automatically build the React app and host it on S3?
P.S. Any links to videos or guides would be welcome (AWS CDK v2).
I was able to deploy my React application using AWS CDK Pipelines
This is my project structure
These are the internals of the files. I tried to make them clean, but they may include some strange parts.
P.S. Hashtag (#) is a native way to make class fields private. See Private Properties MDN
bin/cdk.ts
pipeline.stack.ts
app.stage.ts
web-site.stack.ts
cdk.context.json