Skip to content

document IDE setup #3397

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 18, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,21 @@ Once you've done this, clone your fork to your local machine:
_Adding the `upstream` remote sets you up nicely for regularly [syncing your
fork](https://help.github.com/articles/syncing-a-fork/)._

## IDE setup

Skaffold uses go modules and we commit to the `vendor` directory all our dependencies to make CI faster.
We recommend checking out Skaffold outside of the `GOPATH`.

JetBrains Goland:
1. `File > Open...` (choose your skaffold directory)
2. ensure `Go > Go modules > Vendoring mode` is checked

JetBrains IntelliJ with [Go plugin](https://plugins.jetbrains.com/plugin/9568-go):
1. `File > Open...` (choose your skaffold directory)

Visual Studio Code with [Go plugin](https://github.com/Microsoft/vscode-go):
1. `File > Open...`

## Making a config change

Some changes to the skaffold code require a change to the skaffold config. These changes require a few extra steps:
Expand Down