Skip to content

Commit 5aa5fac

Browse files
committed
Remove GO111MODULE from docs
1 parent dc4b591 commit 5aa5fac

File tree

20 files changed

+0
-20
lines changed

20 files changed

+0
-20
lines changed

examples/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ We've made it easy to run the browser based examples on your local machine.
4040

4141
1. Build and run the example server:
4242
``` sh
43-
GO111MODULE=on go get github.com/pion/webrtc/v4
4443
git clone https://github.com/pion/webrtc.git $GOPATH/src/github.com/pion/webrtc
4544
cd $GOPATH/src/github.com/pion/webrtc/examples
4645
go run examples.go

examples/broadcast/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ This could serve as the building block to building conferencing software, and ot
66
## Instructions
77
### Download broadcast
88
```
9-
export GO111MODULE=on
109
go get github.com/pion/webrtc/v4/examples/broadcast
1110
```
1211

examples/custom-logger/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ users to override this and process messages however they want.
66
## Instructions
77
### Download custom-logger
88
```
9-
export GO111MODULE=on
109
go get github.com/pion/webrtc/v4/examples/custom-logger
1110
```
1211

examples/data-channels-detach/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ The example mirrors the data-channels example.
55

66
## Install
77
```
8-
export GO111MODULE=on
98
go get github.com/pion/webrtc/v4/examples/data-channels-detach
109
```
1110

examples/data-channels/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ data-channels is a Pion WebRTC application that shows how you can send/recv Data
44
## Instructions
55
### Download data-channels
66
```
7-
export GO111MODULE=on
87
go get github.com/pion/webrtc/v4/examples/data-channels
98
```
109

examples/insertable-streams/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ ffmpeg -i $INPUT_FILE -g 30 output.ivf
1414

1515
### Download insertable-streams
1616
```
17-
export GO111MODULE=on
1817
go get github.com/pion/webrtc/v4/examples/insertable-streams
1918
```
2019

examples/ortc/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ In this example we have defined a simple JSON based signaling protocol.
99
## Instructions
1010
### Download ortc
1111
```
12-
export GO111MODULE=on
1312
go get github.com/pion/webrtc/v4/examples/ortc
1413
```
1514

examples/pion-to-pion/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ The `answer` side acts like a HTTP server and should therefore be ran first.
77
## Instructions
88
First run `answer`:
99
```sh
10-
export GO111MODULE=on
1110
go install github.com/pion/webrtc/v4/examples/pion-to-pion/answer
1211
answer
1312
```

examples/pion-to-pion/answer/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
FROM golang:1.21
55

6-
ENV GO111MODULE=on
76
RUN go install github.com/pion/webrtc/v4/examples/pion-to-pion/answer@latest
87

98
CMD ["answer"]

examples/pion-to-pion/offer/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
FROM golang:1.21
55

6-
ENV GO111MODULE=on
76
RUN go install github.com/pion/webrtc/v4/examples/pion-to-pion/offer@latest
87

98
CMD ["offer"]

0 commit comments

Comments
 (0)