forked from aws/aws-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main'
- Loading branch information
Showing
18,925 changed files
with
3,670,565 additions
and
753,362 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM jsii/superchain:1-buster-slim-node18 | ||
|
||
USER root | ||
|
||
# Change uid/guid of superchain so it can work with the docker-in-docker feature | ||
RUN groupmod --gid 1000 superchain \ | ||
&& usermod --uid 1000 --gid 1000 superchain \ | ||
&& chown -R 1000:1000 /home/superchain | ||
|
||
USER superchain | ||
|
||
# Setup oh-my-zsh | ||
RUN sudo apt-get update && export DEBIAN_FRONTEND=noninteractive \ | ||
&& sudo apt-get -y install --no-install-recommends zsh vim \ | ||
&& sudo rm -rf /var/lib/apt/lists/* \ | ||
&& sudo chsh -s $(which zsh) $(whoami) | ||
RUN sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended \ | ||
# Required, otherwise shell is extermly slow due the size of the aws-cdk | ||
&& sudo sh -c 'echo "[oh-my-zsh]\n hide-dirty = 1" > /etc/gitconfig' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "aws-cdk", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
|
||
"customizations": { | ||
"vscode": { | ||
"extensions": ["dbaeumer.vscode-eslint"] | ||
} | ||
}, | ||
|
||
"postCreateCommand": "yarn install", | ||
"remoteUser": "superchain", | ||
"features": { | ||
"docker-in-docker": { | ||
"version": "latest", | ||
"moby": true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
--- | ||
name: "🐛 Bug Report" | ||
description: Report a bug | ||
title: "(module name): (short issue description)" | ||
labels: [bug, needs-triage] | ||
assignees: [] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: What is the problem? A clear and concise description of the bug. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected Behavior | ||
description: | | ||
What did you expect to happen? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: current | ||
attributes: | ||
label: Current Behavior | ||
description: | | ||
What actually happened? | ||
Please include full errors, uncaught exceptions, stack traces, and relevant logs. | ||
If service responses are relevant, please include wire logs. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Reproduction Steps | ||
description: | | ||
Provide a self-contained, concise snippet of code that can be used to reproduce the issue. | ||
For more complex issues provide a repo with the smallest sample that reproduces the bug. | ||
Avoid including business logic or unrelated code, it makes diagnosis more difficult. | ||
The code sample should be an SSCCE. See http://sscce.org/ for details. In short, please provide a code sample that we can copy/paste, run and reproduce. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Possible Solution | ||
description: | | ||
Suggest a fix/reason for the bug | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional Information/Context | ||
description: | | ||
Anything else that might be relevant for troubleshooting this bug. Providing context helps us come up with a solution that is most useful in the real world. | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: cdk-version | ||
attributes: | ||
label: CDK CLI Version | ||
description: Output of `cdk version` | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: framework-version | ||
attributes: | ||
label: Framework Version | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: node-version | ||
attributes: | ||
label: Node.js Version | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: operating-system | ||
attributes: | ||
label: OS | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: language | ||
attributes: | ||
label: Language | ||
multiple: true | ||
options: | ||
- TypeScript | ||
- Python | ||
- .NET | ||
- Java | ||
- Go | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: language-version | ||
attributes: | ||
label: Language Version | ||
description: E.g. TypeScript (3.8.3) | Java (8) | Python (3.7.3) | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: other | ||
attributes: | ||
label: Other information | ||
description: | | ||
e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. associated pull-request, stackoverflow, slack, etc | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Stackoverflow | ||
url: https://stackoverflow.com/questions/tagged/aws-cdk | ||
about: Please ask and answer questions here. | ||
- name: 💬 General Question | ||
url: https://github.com/aws/aws-cdk/discussions/categories/q-a | ||
about: Please ask and answer questions as a discussion thread |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: "📕 Documentation Issue" | ||
description: Report an issue in the API Reference documentation or Developer Guide | ||
title: "(module name): (short issue description)" | ||
labels: [documentation, needs-triage] | ||
assignees: [] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the issue | ||
description: A clear and concise description of the issue. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: links | ||
attributes: | ||
label: Links | ||
description: | | ||
Include links to affected documentation page(s). | ||
validations: | ||
required: true |
Oops, something went wrong.