You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Features to add to the dev container. More info: https://containers.dev/features.
9
+
// "features": {},
17
10
18
11
// Configure tool-specific properties.
19
12
"customizations": {
20
13
// Configure properties specific to VS Code.
21
14
"vscode": {
22
-
// Set *default* container specific settings.json values on container create.
23
-
"settings": {
24
-
"go.toolsManagement.checkForUpdates": "local",
25
-
"go.useLanguageServer": true,
26
-
"go.gopath": "/go",
27
-
"go.goroot": "/usr/local/go"
28
-
},
29
-
30
-
// Add the IDs of extensions you want installed when the container is created.
15
+
"settings": {},
31
16
"extensions": [
32
-
"golang.Go"
17
+
"streetsidesoftware.code-spell-checker"
33
18
]
34
19
}
35
20
},
36
21
37
22
// Use 'forwardPorts' to make a list of ports inside the container available locally.
38
23
// "forwardPorts": [9000],
39
24
40
-
// Use 'portsAttributes' to set default properties for specific forwarded ports. More info: https://code.visualstudio.com/docs/remote/devcontainerjson-reference.
25
+
// Use 'portsAttributes' to set default properties for specific forwarded ports.
26
+
// More info: https://containers.dev/implementors/json_reference/#port-attributes
41
27
"portsAttributes": {
42
28
"9000": {
43
29
"label": "Hello Remote World",
44
30
"onAutoForward": "notify"
45
31
}
46
-
},
47
-
48
-
// Use 'otherPortsAttributes' to configure any ports that aren't configured using 'portsAttributes'.
49
-
// "otherPortsAttributes": {
50
-
// "onAutoForward": "silent"
51
-
// },
32
+
}
52
33
53
34
// Use 'postCreateCommand' to run commands after the container is created.
54
35
// "postCreateCommand": "go version",
55
36
56
-
// Uncomment to connect as a non-root user. More info: https://aka.ms/vscode-remote/containers/non-root.
57
-
"remoteUser": "vscode"
37
+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
Copy file name to clipboardexpand all lines: README.md
+22-12
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
[](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/microsoft/vscode-remote-try-go)
4
4
5
-
A **development container** is a running [Docker](https://www.docker.com)container with a well-defined tool/runtime stack and its prerequisites. You can try out development containers with **[GitHub Codespaces](https://github.com/features/codespaces)** or **[Visual Studio Code Dev Containers](https://aka.ms/vscode-remote/containers)**.
5
+
A **development container** is a running container with a well-defined tool/runtime stack and its prerequisites. You can try out development containers with **[GitHub Codespaces](https://github.com/features/codespaces)** or **[Visual Studio Code Dev Containers](https://aka.ms/vscode-remote/containers)**.
6
6
7
7
This is a sample project that lets you try out either option in a few easy steps. We have a variety of other [vscode-remote-try-*](https://github.com/search?q=org%3Amicrosoft+vscode-remote-try-&type=Repositories) sample projects, too.
8
8
@@ -12,8 +12,9 @@ This is a sample project that lets you try out either option in a few easy steps
12
12
13
13
### GitHub Codespaces
14
14
Follow these steps to open this sample in a Codespace:
15
-
1. Click the Code drop-down menu and select the **Open with Codespaces** option.
16
-
1. Select **+ New codespace** at the bottom on the pane.
15
+
1. Click the **Code** drop-down menu.
16
+
2. Click on the **Codespaces** tab.
17
+
3. Click **Create codespace on main** .
17
18
18
19
For more info, check out the [GitHub documentation](https://docs.github.com/en/free-pro-team@latest/github/developing-online-with-codespaces/creating-a-codespace#creating-a-codespace).
19
20
@@ -41,14 +42,14 @@ Follow these steps to open this sample in a container using the VS Code Dev Cont
41
42
42
43
Once you have this sample opened, you'll be able to work with it like you would locally.
43
44
44
-
> **Note:** This container runs as a non-root user with sudo access by default. Comment out `"remoteUser": "vscode"` in `.devcontainer/devcontainer.json` if you'd prefer to run as root.
45
-
46
45
Some things to try:
47
46
48
47
1.**Edit:**
49
48
- Open `server.go`
50
49
- Try adding some code and check out the language features.
51
-
- Notice the Go extension is already installed in the container since the `.devcontainer/devcontainer.json` lists `"golang.Go"` as an extension to install automatically when the container is created.
50
+
- Make a spelling mistake and notice it is detected. The [Code Spell Checker](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) extension was automatically installed because it is referenced in `.devcontainer/devcontainer.json`.
51
+
- Also notice that utilities like `gopls` and the [Go](https://marketplace.visualstudio.com/items?itemName=golang.Go) extension are installed. Tools are installed in the `mcr.microsoft.com/devcontainers/go` image and Dev Container settings and metadata are automatically picked up from [image labels](https://containers.dev/implementors/reference/#labels).
52
+
52
53
2.**Terminal:** Press <kbd>ctrl</kbd>+<kbd>shift</kbd>+<kbd>\`</kbd> and type `uname` and other Linux commands from the terminal window.
53
54
3.**Build, Run, and Debug:**
54
55
- Open `server.go`
@@ -71,24 +72,33 @@ Some things to try:
71
72
- Open the `.devcontainer/devcontainer.json` file.
72
73
- Modify the `"onAutoForward"` attribute in your `portsAttributes` from `"notify"` to `"openBrowser"`.
73
74
- Press <kbd>F1</kbd> and select the **Dev Containers: Rebuild Container** or **Codespaces: Rebuild Container** command so the modifications are picked up.
74
-
5.**Refactoring - rename:**
75
+
76
+
5.**Install Node.js using a Dev Container Feature:**
77
+
- Press <kbd>F1</kbd> and select the **Dev Containers: Configure Container Features...** or **Codespaces: Configure Container Features...** command.
78
+
- Type "node" in the text box at the top.
79
+
- Check the check box next to "Node.js (via nvm) and yarn" (published by devcontainers)
80
+
- Click OK
81
+
- Press <kbd>F1</kbd> and select the **Dev Containers: Rebuild Container** or **Codespaces: Rebuild Container** command so the modifications are picked up.
82
+
83
+
6.**Refactoring - rename:**
75
84
- Open `hello.go`, select method name `Hello` press <kbd>F1</kbd> and run the **Rename Symbol** command.
76
-
6.**Refactoring - extract:**
85
+
7.**Refactoring - extract:**
77
86
- Open `hello.go` and select string, press <kbd>F1</kbd> and run the **Go: Extract to variable** command.
78
87
- Open `hello.go` and select line with return statement, press <kbd>F1</kbd> and run the **Go: Extract to function** command.
79
-
7.**Generate tests:**
88
+
8.**Generate tests:**
80
89
- Open `hello.go` and press <kbd>F1</kbd> and run the **Go: Generate Unit Tests For File** command.
81
90
- Implement a test case: Open file `hello_test.go` and edit the line with the `TODO` comment: `{"hello without name", "Hello, "},`
82
91
- You can toggle between implementation file and test file with press <kbd>F1</kbd> and run the **Go: Toggle Test File**
83
92
- Tests can also run as benchmarks: Open file `hello_test.go`, press <kbd>F1</kbd> and run the **Go: Benchmark File**
0 commit comments