This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# run example: ./deploy-client.sh <s3-bucket-name> <cloudfront-distribution-id> <path-to-local-files> | |
if [ $# -ne 3 ]; then | |
echo "Usage: $0 <s3-bucket-name> <cloudfront-distribution-id> <path-to-local-files>" | |
exit 1 | |
fi | |
BUCKET_NAME=$1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Logger } from '@aws-lambda-powertools/logger'; | |
import { injectLambdaContext } from '@aws-lambda-powertools/logger/middleware'; | |
import { Metrics } from '@aws-lambda-powertools/metrics'; | |
import { logMetrics } from '@aws-lambda-powertools/metrics/middleware'; | |
import { Tracer } from '@aws-lambda-powertools/tracer'; | |
import { captureLambdaHandler } from '@aws-lambda-powertools/tracer/middleware'; | |
import middy from '@middy/core'; | |
import { Handler } from 'aws-lambda'; | |
interface StateMachineEvent { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
// add the feature-dev stage with the relevant environment config to the pipeline | |
// this is the test stage (beta) | |
const featureDevStage: PipelineStage = new PipelineStage( | |
this, | |
'FeatureDev', | |
{ | |
...environments.featureDev, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe('create-order', () => { | |
beforeEach(() => { | |
cy.visit('/'); | |
}); | |
it('should have modal closed on initial page load', () => { | |
cy.get('[data-test="create-order-modal"]').should('not.exist'); | |
}); | |
it('should open the create order modal', () => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Setup Bucket Deployment to automatically deploy new assets and invalidate cache | |
new s3deploy.BucketDeployment(this, 'ClientBucketDeployment', { | |
sources: [ | |
s3deploy.Source.asset(path.join(__dirname, '../../../../client/build')), | |
s3deploy.Source.jsonData('config.json', { | |
stage, | |
domainName: props.domainName, | |
subDomain, | |
api: `https://api-${stage}.${props.domainName}`, | |
}), // runtime config for client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as cdk from 'aws-cdk-lib'; | |
import * as pipelines from 'aws-cdk-lib/pipelines'; | |
import { Construct } from 'constructs'; | |
import { PipelineStage } from '../pipeline-stage/pipeline-stage'; | |
import { environments } from '../pipeline-config/pipeline-config'; | |
export class PipelineStack extends cdk.Stack { | |
constructor(scope: Construct, id: string, props?: cdk.StackProps) { | |
super(scope, id, props); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface EnvironmentConfig { | |
env: { | |
account: string; | |
region: string; | |
}; | |
stageName: string; | |
stateful: { | |
bucketName: string; | |
}; | |
stateless: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as dotenv from 'dotenv'; | |
import { | |
Account, | |
EnvironmentConfig, | |
Region, | |
Stage, | |
} from '../pipeline-types/pipeline-types'; | |
dotenv.config(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as apigw from 'aws-cdk-lib/aws-apigateway'; | |
import * as cdk from 'aws-cdk-lib'; | |
import * as dynamodb from 'aws-cdk-lib/aws-dynamodb'; | |
import * as lambda from 'aws-cdk-lib/aws-lambda'; | |
import * as nodeLambda from 'aws-cdk-lib/aws-lambda-nodejs'; | |
import * as path from 'path'; | |
import * as s3 from 'aws-cdk-lib/aws-s3'; | |
import { Construct } from 'constructs'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as cdk from 'aws-cdk-lib'; | |
import * as dynamodb from 'aws-cdk-lib/aws-dynamodb'; | |
import * as s3 from 'aws-cdk-lib/aws-s3'; | |
import { Construct } from 'constructs'; | |
import { RemovalPolicy } from 'aws-cdk-lib'; | |
export interface StatefulStackProps extends cdk.StackProps { | |
bucketName: string; | |
} |
NewerOlder