Writing code for Google Cloud using VS Code
Cloud Code is a set of plugins that provide support for different IDEs and makes it much easier to work with Kubernetes and Cloud Run. I have chosen VS Code as an example built on the open source Code-OSS, but you can follow a similar process with any of the other supported IDEs: IntelliJ, PyCharm, GoLand, WebStorm, and, as we have already seen earlier, Cloud Shell Editor.
In order to install VS Code, we should first make sure that all the prerequisites mentioned in the Google Cloud documentation (https://cloud.google.com/code/docs/vscode/install) are met:
- Install VS Code (https://code.visualstudio.com/)
- Install and configure the support for the languages that you will be using: Go (https://marketplace.visualstudio.com/items?itemName=ms-vscode.Go), Python (https://marketplace.visualstudio.com/items?itemName=ms-python.python), Java (https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-debug), and .NET (https...