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
FROM python:3.7.9 | |
ENV AWS_DEFAULT_REGION=us-west-2 | |
RUN git clone https://github.com/aws/serverless-application-model.git | |
COPY sample-template.yaml /serverless-application-model/sample-template.yaml | |
WORKDIR serverless-application-model | |
RUN pip install boto3 | |
RUN pip install -e '.[dev]' |
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 cc from '@aws-cdk/aws-codecommit'; | |
import * as cb from '@aws-cdk/aws-codebuild'; | |
import * as cp from '@aws-cdk/aws-codepipeline'; | |
import * as cpActions from '@aws-cdk/aws-codepipeline-actions'; | |
import * as cdk from '@aws-cdk/core'; | |
export class PipelineVariablesStack extends cdk.Stack { | |
constructor(scope: cdk.App, id: string, props?: cdk.StackProps) { | |
super(scope, id, props); | |
This file has been truncated, but you can view the full file.
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
module.exports = | |
/******/ (function(modules) { // webpackBootstrap | |
/******/ // The module cache | |
/******/ var installedModules = {}; | |
/******/ // The require function | |
/******/ function __webpack_require__(moduleId) { | |
/******/ // Check if module is in cache | |
/******/ if(installedModules[moduleId]) |