Skip to content

Commit 127949b

Browse files
authored
Update template, illustrate Features and image metadata (#50)
* Update template, illustrate Features and image metadata * Bump to 1.19 * Fix typo
1 parent e4af4e3 commit 127949b

File tree

4 files changed

+37
-64
lines changed

4 files changed

+37
-64
lines changed

.devcontainer/Dockerfile

-18
This file was deleted.

.devcontainer/devcontainer.json

+14-33
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,39 @@
1-
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
2-
// https://github.com/microsoft/vscode-dev-containers/tree/v0.195.0/containers/go
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/go
33
{
44
"name": "Go",
5-
"build": {
6-
"dockerfile": "Dockerfile",
7-
"args": {
8-
// Update the VARIANT arg to pick a version of Go: 1, 1.16, 1.17
9-
// Append -bullseye or -buster to pin to an OS version.
10-
// Use -bullseye variants on local arm64/Apple Silicon.
11-
"VARIANT": "1.17-bullseye",
12-
// Options
13-
"NODE_VERSION": "lts/*"
14-
}
15-
},
16-
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/go:0-1.19-bullseye",
7+
8+
// Features to add to the dev container. More info: https://containers.dev/features.
9+
// "features": {},
1710

1811
// Configure tool-specific properties.
1912
"customizations": {
2013
// Configure properties specific to VS Code.
2114
"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": {},
3116
"extensions": [
32-
"golang.Go"
17+
"streetsidesoftware.code-spell-checker"
3318
]
3419
}
3520
},
3621

3722
// Use 'forwardPorts' to make a list of ports inside the container available locally.
3823
// "forwardPorts": [9000],
3924

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
4127
"portsAttributes": {
4228
"9000": {
4329
"label": "Hello Remote World",
4430
"onAutoForward": "notify"
4531
}
46-
},
47-
48-
// Use 'otherPortsAttributes' to configure any ports that aren't configured using 'portsAttributes'.
49-
// "otherPortsAttributes": {
50-
// "onAutoForward": "silent"
51-
// },
32+
}
5233

5334
// Use 'postCreateCommand' to run commands after the container is created.
5435
// "postCreateCommand": "go version",
5536

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.
38+
// "remoteUser": "root"
5839
}

README.md

+22-12
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Open in Dev Containers](https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode)](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/microsoft/vscode-remote-try-go)
44

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)**.
66

77
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.
88

@@ -12,8 +12,9 @@ This is a sample project that lets you try out either option in a few easy steps
1212

1313
### GitHub Codespaces
1414
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** .
1718

1819
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).
1920

@@ -41,14 +42,14 @@ Follow these steps to open this sample in a container using the VS Code Dev Cont
4142

4243
Once you have this sample opened, you'll be able to work with it like you would locally.
4344

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-
4645
Some things to try:
4746

4847
1. **Edit:**
4948
- Open `server.go`
5049
- 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+
5253
2. **Terminal:** Press <kbd>ctrl</kbd>+<kbd>shift</kbd>+<kbd>\`</kbd> and type `uname` and other Linux commands from the terminal window.
5354
3. **Build, Run, and Debug:**
5455
- Open `server.go`
@@ -71,24 +72,33 @@ Some things to try:
7172
- Open the `.devcontainer/devcontainer.json` file.
7273
- Modify the `"onAutoForward"` attribute in your `portsAttributes` from `"notify"` to `"openBrowser"`.
7374
- 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:**
7584
- 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:**
7786
- Open `hello.go` and select string, press <kbd>F1</kbd> and run the **Go: Extract to variable** command.
7887
- 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:**
8089
- Open `hello.go` and press <kbd>F1</kbd> and run the **Go: Generate Unit Tests For File** command.
8190
- Implement a test case: Open file `hello_test.go` and edit the line with the `TODO` comment: `{"hello without name", "Hello, "},`
8291
- You can toggle between implementation file and test file with press <kbd>F1</kbd> and run the **Go: Toggle Test File**
8392
- Tests can also run as benchmarks: Open file `hello_test.go`, press <kbd>F1</kbd> and run the **Go: Benchmark File**
84-
8. **Stub generation:** ( [details](https://github.com/josharian/impl))
93+
9. **Stub generation:** ( [details](https://github.com/josharian/impl))
8594
- define a struct `type mock struct {}`, enter a new line , press <kbd>F1</kbd> and run the **Go: Generate interface stubs** command.
8695
- edit command `m *mock http.ResponseWriter`
87-
9. **Fill structs:** ([details](https://github.com/davidrjenni/reftools/tree/master/cmd/fillstruct))
96+
10. **Fill structs:** ([details](https://github.com/davidrjenni/reftools/tree/master/cmd/fillstruct))
8897
- Open `hello.go` and select `User{}` of variable asignment, press <kbd>F1</kbd> and run the **Go: Fill struct** command.
89-
10. **Add json tags to structs:** ([details](https://github.com/fatih/gomodifytags))
98+
11. **Add json tags to structs:** ([details](https://github.com/fatih/gomodifytags))
9099
- Open `hello.go` and go with cursor in to a struct, press <kbd>F1</kbd> and run the **Go: Add Tags To Struct Fields** command.
91100

101+
92102
## Contributing
93103

94104
This project welcomes contributions and suggestions. Most contributions require you to agree to a

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/microsoft/vscode-remote-try-go
22

3-
go 1.14
3+
go 1.19

0 commit comments

Comments
 (0)