Skip to content
This repository was archived by the owner on Sep 25, 2024. It is now read-only.

Commit b16c17b

Browse files
committed
feat: inital commit
1 parent c0ffa3a commit b16c17b

File tree

1,477 files changed

+318692
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,477 files changed

+318692
-21
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior.
15+
16+
**Expected behavior**
17+
A clear and concise description of what you expected to happen.
18+
19+
**Please complete the following information about the solution:**
20+
- [ ] Version: [e.g. v1.0.0]
21+
22+
To get the version of the solution, you can look at the description of the created CloudFormation stack. For example, "_(SO0021) - Video On Demand workflow with AWS Step Functions, MediaConvert, MediaPackage, S3, CloudFront and DynamoDB. Version **v5.0.0**_". If the description does not contain the version information, you can look at the mappings section of the template:
23+
24+
```yaml
25+
Mappings:
26+
SourceCode:
27+
General:
28+
S3Bucket: "solutions"
29+
KeyPrefix: "video-on-demand-on-aws/v5.0.0"
30+
```
31+
32+
- [ ] Region: [e.g. us-east-1]
33+
- [ ] Was the solution modified from the version published on this repository?
34+
- [ ] If the answer to the previous question was yes, are the changes available on GitHub?
35+
- [ ] Have you checked your [service quotas](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) for the sevices this solution uses?
36+
- [ ] Were there any errors in the CloudWatch Logs?
37+
38+
**Screenshots**
39+
If applicable, add screenshots to help explain your problem (please **DO NOT include sensitive information**).
40+
41+
**Additional context**
42+
Add any other context about the problem here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this solution
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the feature you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Additional context**
17+
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*Issue #, if available:*
2+
3+
*Description of changes:*
4+
5+
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

.gitignore

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
!deployment/.typescript/cdk-solution-helper/index.js
2+
package-lock.json
3+
!pipeline/package-lock.json
4+
!jest.config.js
5+
*.d.ts
6+
!globals.d.ts
7+
node_modules
8+
!source/.typescript/lambda/**/*.js
9+
!source/lambda/**/*.js
10+
.eslintcache
11+
.local
12+
.scannerwork
13+
14+
**/.jest.test-cdk-environment.js*
15+
16+
# coverage
17+
.coverage
18+
coverage/
19+
.nyc_output
20+
.jacoco
21+
22+
# Built typescript
23+
dist
24+
25+
# CDK asset staging directory
26+
.cdk.staging
27+
cdk.out
28+
cdk.out*
29+
30+
!**/cdk-solution-helper/index.js
31+
32+
# Coverage
33+
**/coverage/*
34+
35+
## Pact
36+
37+
**/pacts-logs/*
38+
39+
deployment/global-s3-assets
40+
deployment/regional-s3-assets
41+
deployment/staging
42+
open-source/
43+
44+
# Temporary folders
45+
tmp/
46+
temp/
47+
48+
# Intellij
49+
*.iml
50+
51+
### VisualStudioCode ###
52+
.vscode/*
53+
54+
### macOS ###
55+
.DS_Store
56+
57+
## IntelliJ
58+
59+
**/.idea/*
60+
61+
# yarn
62+
**/yarn-error.log
63+
64+
# env file
65+
.env
66+
.env.*
67+
!.env.example
68+
69+
# cfn nag output
70+
cfn_nag_suppressions.log
71+
72+
# java lambdas
73+
**/target
74+
**/dependency-reduced-pom.xml
75+
**/*.iml
76+
**/.classpath
77+
**/.factorypath
78+
**/.project
79+
**/.settings/
80+
81+
# cypress testing
82+
source/cypress/results/*
83+
source/cypress/screenshots/*
84+
source/cypress/videos/*
85+
86+
# Python
87+
.python-version
88+
89+
# tern docker scan generated files
90+
**/Dockerfile_*
91+
92+
# Cached dependencies directory
93+
source/packages/@ada/infra/src/services/data-product/components/schema-preview/docker-image/dependencies
94+
95+
# temporary files
96+
source/packages/@ada/infra/src/common/constructs/api/lambda-layer/code/nodejs/api-client-lambda/jwt-signer/index.ts
97+
source/packages/@ada/infra/src/common/constructs/api/lambda-layer/code/nodejs/api-client-lambda/jwt-signer/version.json

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [1.0.0] - 2022-08-05
8+
### Added
9+
- All files, initial version

CODE_OF_CONDUCT.md

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
## Code of Conduct
2-
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3-
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
2+
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3+
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
44
opensource-codeofconduct@amazon.com with any additional questions or comments.

CONTRIBUTING.md

100644100755
Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already
14+
When filing an issue, please check [existing open](https://github.com/aws-solutions/automated-data-analytics-on-aws/issues), or [recently closed](https://github.com/aws-solutions/automated-data-analytics-on-aws/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
1515
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
1616

1717
* A reproducible test case or series of steps
@@ -31,17 +31,18 @@ To send us a pull request, please:
3131

3232
1. Fork the repository.
3333
2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
34-
3. Ensure local tests pass.
35-
4. Commit to your fork using clear commit messages.
36-
5. Send us a pull request, answering any default questions in the pull request interface.
37-
6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
34+
3. Ensure all build processes execute successfully (see README.md for additional guidance).
35+
4. Ensure all unit, integration, and/or snapshot tests pass, as applicable.
36+
5. Commit to your fork using clear commit messages.
37+
6. Send us a pull request, answering any default questions in the pull request interface.
38+
7. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
3839

3940
GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
4041
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
4142

4243

4344
## Finding contributions to work on
44-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start.
45+
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/aws-solutions/automated-data-analytics-on-aws/labels/help%20wanted) issues is a great place to start.
4546

4647

4748
## Code of Conduct
@@ -51,9 +52,11 @@ opensource-codeofconduct@amazon.com with any additional questions or comments.
5152

5253

5354
## Security issue notifications
54-
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
55+
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public GitHub issue.
5556

5657

5758
## Licensing
5859

59-
See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
60+
See the [LICENSE](https://github.com/aws-solutions/automated-data-analytics-on-aws/blob/main/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
61+
62+
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

LICENSE renamed to LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,4 +172,4 @@
172172
of any other Contributor, and only if You agree to indemnify,
173173
defend, and hold each Contributor harmless for any liability
174174
incurred by, or claims asserted against, such Contributor by reason
175-
of your accepting any such warranty or additional liability.
175+
of your accepting any such warranty or additional liability.

NOTICE

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)