low-cost-ecs 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +23 -0
- package/.jsii +3394 -0
- package/.projenrc.ts +49 -0
- package/API.md +1184 -0
- package/LICENSE +19 -0
- package/README.md +117 -0
- package/bin/low-cost-ecs.ts +15 -0
- package/cdk.json +3 -0
- package/containers/nginx-proxy/Dockerfile +3 -0
- package/containers/nginx-proxy/templates/default.conf.template +15 -0
- package/containers/nginx-proxy/templates/http_to_https_redirect.conf.template +6 -0
- package/containers/nginx-proxy/templates/https.conf.template +33 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +14 -0
- package/lib/low-cost-ecs.d.ts +102 -0
- package/lib/low-cost-ecs.js +273 -0
- package/package.json +139 -0
- package/todo.md +4 -0
package/.projenrc.ts
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { awscdk } from 'projen';
|
|
2
|
+
import { UpgradeDependenciesSchedule } from 'projen/lib/javascript';
|
|
3
|
+
|
|
4
|
+
const excludes = ['.idea/', 'cdk.out/', 'cdk.context.json', 'yarn-error.log'];
|
|
5
|
+
const project = new awscdk.AwsCdkConstructLibrary({
|
|
6
|
+
author: 'Yohta Kimura',
|
|
7
|
+
authorAddress: 'kitakita7617@gmail.com',
|
|
8
|
+
name: 'low-cost-ecs',
|
|
9
|
+
description: 'Easy and low-cost ECS on EC2 server without a load balancer',
|
|
10
|
+
repositoryUrl: 'https://github.com/rajyan/low-cost-ecs.git',
|
|
11
|
+
license: 'MIT',
|
|
12
|
+
cdkVersion: '2.37.0',
|
|
13
|
+
defaultReleaseBranch: 'main',
|
|
14
|
+
keywords: [
|
|
15
|
+
'cdk',
|
|
16
|
+
'ecs',
|
|
17
|
+
'stepfunctions',
|
|
18
|
+
'route53',
|
|
19
|
+
'certbot',
|
|
20
|
+
'loadbalancer',
|
|
21
|
+
],
|
|
22
|
+
devDeps: [
|
|
23
|
+
'aws-cdk',
|
|
24
|
+
'ts-node',
|
|
25
|
+
],
|
|
26
|
+
stability: 'experimental',
|
|
27
|
+
|
|
28
|
+
python: {
|
|
29
|
+
distName: 'low-cost-ecs',
|
|
30
|
+
module: 'low_cost_ecs',
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
npmignore: excludes,
|
|
34
|
+
gitignore: excludes,
|
|
35
|
+
autoApproveOptions: {
|
|
36
|
+
allowedUsernames: ['rajyan'],
|
|
37
|
+
},
|
|
38
|
+
depsUpgradeOptions: {
|
|
39
|
+
workflowOptions: {
|
|
40
|
+
schedule: UpgradeDependenciesSchedule.WEEKLY,
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
projenrcTs: true,
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
// workaround until fixed https://youtrack.jetbrains.com/issue/WEB-57089/ESLint823-TypeError-thislibOptionsparse-is-not-a-function
|
|
47
|
+
project.addDevDeps('eslint@8.22.0');
|
|
48
|
+
|
|
49
|
+
project.synth();
|