Skip to content

Commit

Permalink
Instantiate NewsWires app
Browse files Browse the repository at this point in the history
  • Loading branch information
bryophyta committed Aug 28, 2024
1 parent ec632c8 commit 7b5bca6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions cdk/bin/cdk.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import 'source-map-support/register';
import { GuRoot } from '@guardian/cdk/lib/constructs/root';
import { Newswires } from '../lib/newswires';
import { WiresFeeds } from '../lib/wires-feeds';

const app = new GuRoot();
Expand All @@ -20,3 +21,14 @@ new WiresFeeds(app, 'WiresFeeds-PROD', {
stack,
stage: 'PROD',
});

new Newswires(app, 'Newswires-CODE', {
env,
stack,
stage: 'CODE',
});
new Newswires(app, 'Newswires-PROD', {
env,
stack,
stage: 'PROD',
});

0 comments on commit 7b5bca6

Please sign in to comment.