moving folders around

This commit is contained in:
Matthew Zhao
2021-03-03 17:30:57 -08:00
parent 1dd1969ac8
commit 8cdbb0d493
11 changed files with 0 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env node
import 'source-map-support/register';
import * as cdk from '@aws-cdk/core';
import { DeployStack } from '../lib/deploy-stack';
let app = new cdk.App();
// replace them with HostedZoneID in route53, the domain name for the localtunnel, and the hosted zone domain
new DeployStack(app, 'DeployStack', process.env.LOCALTUNNEL_ROUTE53_ID as string , process.env.LOCALTUNNEL_BASE_DOMAIN as string);