Relative Content

Tag Archive for pythonamazon-web-servicesaws-cdkcicd

AWS Codepipeline for a react web app using nodejs 14

pipeline = pipelines.CodePipeline(self, “Os1Pipeline”, synth=pipelines.ShellStep(“Synth”, # Use a connection created using the AWS console to authenticate to GitHub # Other sources are available. input=pipelines.CodePipelineSource.connection(“twosvn/os1-platform-be”, “aws”, connection_arn=”arn:aws:codestar-connections:eu-north-1:767397986068:connection/416d1c42-1019-4d88-9fa8-db0d6b9e7d53″ ), commands=[“npm ci”, “pwd”, “python3 -m venv venv”, “source venv/bin/activate”, “pip3 install -r requirements.txt”, “cdk synth” ], primary_output_directory=’os1-be/cdk.out’, ) ) The error i’m getting is with my cdk.out. I’ve […]