-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.js
34 lines (28 loc) · 916 Bytes
/
.projenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const { AwsCdkConstructLibrary } = require('projen');
const project = new AwsCdkConstructLibrary({
authorAddress: '[email protected]',
authorName: 'Emanuele Ricci',
description:
'An AWS CDK construct to instantly deploy a static website on serverless infrastructure. Easy, fast, done.',
name: 'cdk-website',
repository: 'https://github.com/stermi/cdk-website.git',
keywords: ['spa', 'website', 'vue', 'react', 'angular'],
cdkVersion: '1.69.0',
cdkDependencies: [
'@aws-cdk/core',
'@aws-cdk/aws-certificatemanager',
'@aws-cdk/aws-cloudfront',
'@aws-cdk/aws-route53',
'@aws-cdk/aws-route53-targets',
'@aws-cdk/aws-s3',
'@aws-cdk/aws-s3-deployment',
],
cdkTestDependencies: ['@aws-cdk/assert'],
catalog: {
announce: true,
twitter: 'stermi',
},
defaultReleaseBranch: 'main',
});
project.gitignore.exclude('.env','.idea', '.vscode')
project.synth();