Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional documentation, we greatly value feedback and contributions from our community.
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary information to effectively respond to your bug report or contribution.
Before you start, install the following dependencies.
- Visual Studio Code
- NodeJS and NPM
- NodeJS Version: 10.x
- NPM version: 6.4.1 or higher
- Typescript
- Git
Then clone the repository and install npm dependencies:
cd ~/repos
git clone [email protected]:aws/aws-toolkit-vscode.git
cd aws-toolkit-vscode
npm install
When you launch the extension or run tests from Visual Studio Code, it will automatically build the extension and watch for changes.
If you prefer, you can build from the command line:
- To build one time:
npm run compile
- To build and watch for file changes:
npm run watch
You can run tests directly from Visual Studio Code:
- Select
View > Debug
, or select the Debug pane from the sidebar. - From the dropdown at the top of the Debug pane, select the
Extension Tests
configuration. - Press
F5
to run tests with the debugger attached.
If you prefer, you can also run tests from the command line:
npm run test
Note: If you want to run tests from the command line, you must first close all instances of Visual Studio Code.
After running the tests, the coverage report can be found at ./coverage/index.html
You can run directly from Visual Studio Code:
- Select
View > Debug
, or select the Debug pane from the sidebar. - From the dropdown at the top of the Debug pane, select the
Extension
configuration. - Press
F5
to launch a new instance of Visual Studio Code with the extension installed and the debugger attached.
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already. reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
- A reproducible test case or series of steps
- The version of our code being used
- Any modifications you've made relevant to the bug
- Anything unusual about your environment or deployment
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
- You are working against the latest source on the master branch.
- You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
- You open an issue to discuss any significant work - we would hate for your time to be wasted.
To send us a pull request, please:
- Fork the repository.
- 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.
- Ensure local tests pass.
- Commit to your fork using clear commit messages.
- Once you are done with your change, run
npm run newChange
, follow the prompts, then commit the changelog item to your fork. - Send us a pull request, answering any default questions in the pull request interface.
- Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
GitHub provides additional document on forking a repository and creating a pull request.
If you are contribuing visual assets from other open source repos, the source repo must have a compatible license (such as MIT), and we need to document the source of the images. Follow these steps:
- A separate location in this repo is used for every repo where images are sourced from. The location is in the form
third-party/resources/from-<BRIEF_REPO_NAME>
- Copy the source repo's licence into this destination location's LICENSE.txt file
- Create a README.md in the destination location, and type in a copyright attribution:
The AWS Toolkit for VS Code includes the following third-party software/licensing:
Icons contained in this folder and subfolders are from <SOURCE_REPO_NAME>: <SOURCE_REPO_URL>
<PASTE_SOURCE_LICENSE_HERE>
- Copy the SVG file(s) into a suitable place within the destination location, for example
.../dark/xyz.svg
and.../light/xyz.svg
- Add an entry to
third-party/README.md
summarizing the new destination location, where the asserts were sourced from, and a brief rationale.
PR 227 illustrates what this looks like in practice.
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/good first issue/invalid/question/wontfix), looking at any good first issue
or help wanted
issues is a great place to start.
This project has adopted the Amazon Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our vulnerability reporting page. Please do not create a public github issue.
See the LICENSE file for our project's licensing. We will ask you to confirm the licensing of your contribution.
We may ask you to sign a Contributor License Agreement (CLA) for larger changes.