We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e29027f commit c1b0a96Copy full SHA for c1b0a96
.gitpod.yml
@@ -7,6 +7,8 @@ tasks:
7
init: go install github.com/go-task/task/v3/cmd/task@latest
8
- name: install goimport
9
init: go install golang.org/x/tools/cmd/goimports@latest
10
+ - name: install socat
11
+ init: sudo apt install -y socat
12
13
vscode:
14
extensions:
README.md
@@ -3,6 +3,18 @@ Unix domain socket (UDS) example by golang
3
4
## How to Run
5
6
+### Using [go-task](https://taskfile.dev/)
+
+```sh
+$ task --list
+* run-basic: run basic example
+* run-readwrite: run readwrite example
+* run-readwrite2: run readwrite2 example
+* run-usinggob: run usinggob example
15
+$ task [run-basic|run-readwrite|run-readwrite2|run-usinggob]
16
+```
17
18
### basic
19
20
Open two terminals. the one is following:
0 commit comments