public static void main()

in frontend-infrastructure/src/main/java/com/recognise/FrontendInfrastructureApp.java [10:36]


    public static void main(final String[] args) {
        App app = new App();

        new FrontendInfrastructureStack(app, "serverless-web-application-frontend", StackProps.builder()
                .description("Creates the frontend infrastructure for content")
                .env(Environment.builder()
                        .region("eu-west-1")
                        .build())
                .build());


        new FrontEndPipelineStack(app, "serverless-web-application-frontend-pipeline", StackProps.builder()
                .description("Creates the frontend infrastructure pipeline")
                .env(Environment.builder()
                        .region("eu-west-1")
                        .build())
                .build());

        new FrontEndCdkPipelineStack(app, "serverless-web-application-frontend-cdk-pipeline", StackProps.builder()
                .description("Creates the frontend infrastructure using cdk pipeline")
                .env(Environment.builder()
                        .region("eu-west-1")
                        .build())
                .build());

        app.synth();
    }