We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
We use github to host code, to track issues and feature requests, as well as accept pull requests.
We Use Github Flow, So All Code Changes Happen Through Pull Requests
Pull requests are the best way to propose changes to the codebase (we use Github Flow). We actively welcome your pull requests:
- Fork the repo and create your branch from
main
. - Go through the initial setup below.
- If seen as necessary, update the documentation.
- Issue that pull request!
In short, when you submit code changes, your submissions are understood to be under the same MIT License that covers the project. Feel free to contact @adamiBs if that's a concern.
- Install Node.js v14.X.X> from: https://nodejs.org/
- Install
terrafrom
from: https://developer.hashicorp.com/terraform/downloads?product_intent=terraform - Install
graphviz
from: https://graphviz.org/download/
- Fork the git repo.
- Pull the git repo via
git pull
. - Enter directory:
cd vscode-terraform-live-graph
- Recommendation: Execute
git remote add upstream https://github.com/adamiBs/vscode-terraform-live-graph.git
. This will allow synchronizing themain
branch with changes from the upstream project via:git pull upstream main
. - Next, follow the official VS Code development guide from here: https://code.visualstudio.com/api/get-started/your-first-extension#developing-the-extension
- Currently, most of the business logic is located at ./src/vscodeTerrafromGraph.ts
This document was adapted from here