Created
April 30, 2020 21:54
-
-
Save logemann/604143183741f65130e55307cee3fb3d to your computer and use it in GitHub Desktop.
entry code for CDK project
This file contains hidden or 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
#!/usr/bin/env node | |
import 'source-map-support/register'; | |
import * as cdk from '@aws-cdk/core'; | |
import { ContDeployDockerStack } from '../lib/cont_deploy_docker-stack'; | |
const app = new cdk.App(); | |
new ContDeployDockerStack(app, 'ContDeployDockerStack'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment