Skip to content

Commit

Permalink
Remove GO111MODULE from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean-Der committed Sep 5, 2023
1 parent dc4b591 commit 5aa5fac
Show file tree
Hide file tree
Showing 20 changed files with 0 additions and 20 deletions.
1 change: 0 additions & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ We've made it easy to run the browser based examples on your local machine.

1. Build and run the example server:
``` sh
GO111MODULE=on go get github.com/pion/webrtc/v4
git clone https://github.com/pion/webrtc.git $GOPATH/src/github.com/pion/webrtc
cd $GOPATH/src/github.com/pion/webrtc/examples
go run examples.go
Expand Down
1 change: 0 additions & 1 deletion examples/broadcast/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ This could serve as the building block to building conferencing software, and ot
## Instructions
### Download broadcast
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/broadcast
```

Expand Down
1 change: 0 additions & 1 deletion examples/custom-logger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ users to override this and process messages however they want.
## Instructions
### Download custom-logger
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/custom-logger
```

Expand Down
1 change: 0 additions & 1 deletion examples/data-channels-detach/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ The example mirrors the data-channels example.

## Install
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/data-channels-detach
```

Expand Down
1 change: 0 additions & 1 deletion examples/data-channels/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ data-channels is a Pion WebRTC application that shows how you can send/recv Data
## Instructions
### Download data-channels
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/data-channels
```

Expand Down
1 change: 0 additions & 1 deletion examples/insertable-streams/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ffmpeg -i $INPUT_FILE -g 30 output.ivf

### Download insertable-streams
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/insertable-streams
```

Expand Down
1 change: 0 additions & 1 deletion examples/ortc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ In this example we have defined a simple JSON based signaling protocol.
## Instructions
### Download ortc
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/ortc
```

Expand Down
1 change: 0 additions & 1 deletion examples/pion-to-pion/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ The `answer` side acts like a HTTP server and should therefore be ran first.
## Instructions
First run `answer`:
```sh
export GO111MODULE=on
go install github.com/pion/webrtc/v4/examples/pion-to-pion/answer
answer
```
Expand Down
1 change: 0 additions & 1 deletion examples/pion-to-pion/answer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

FROM golang:1.21

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

CMD ["answer"]
Expand Down
1 change: 0 additions & 1 deletion examples/pion-to-pion/offer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

FROM golang:1.21

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

CMD ["offer"]
1 change: 0 additions & 1 deletion examples/play-from-disk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ffmpeg -i $INPUT_FILE -c:a libopus -page_duration 20000 -vn output.ogg
### Download play-from-disk

```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/play-from-disk
```

Expand Down
1 change: 0 additions & 1 deletion examples/reflect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ reflect demonstrates how with one PeerConnection you can send video to Pion and
## Instructions
### Download reflect
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/reflect
```

Expand Down
1 change: 0 additions & 1 deletion examples/rtcp-processing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ also craft messages to influence the media quality.
## Instructions
### Download rtcp-processing
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/rtcp-processing
```

Expand Down
1 change: 0 additions & 1 deletion examples/rtp-forwarder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ rtp-forwarder is a simple application that shows how to forward your webcam/micr
## Instructions
### Download rtp-forwarder
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/rtp-forwarder
```

Expand Down
1 change: 0 additions & 1 deletion examples/rtp-to-webrtc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ With this example we have pre-made GStreamer and ffmpeg pipelines, but you can u
## Instructions
### Download rtp-to-webrtc
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/rtp-to-webrtc
```

Expand Down
1 change: 0 additions & 1 deletion examples/save-to-disk-av1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ You can then send this video back to your browser using [play-from-disk](https:/
## Instructions
### Download save-to-disk-av1
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/save-to-disk-av1
```

Expand Down
1 change: 0 additions & 1 deletion examples/save-to-disk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ You can then send this video back to your browser using [play-from-disk](https:/
## Instructions
### Download save-to-disk
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/save-to-disk
```

Expand Down
1 change: 0 additions & 1 deletion examples/simulcast/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ is selected.
## Instructions
### Download simulcast
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/simulcast
```

Expand Down
1 change: 0 additions & 1 deletion examples/stats/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ during a session and why.
## Instructions
### Download stats
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/stats
```

Expand Down
1 change: 0 additions & 1 deletion examples/swap-tracks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ swap-tracks demonstrates how to swap multiple incoming tracks on a single outgoi
## Instructions
### Download swap-tracks
```
export GO111MODULE=on
go get github.com/pion/webrtc/v4/examples/swap-tracks
```

Expand Down

0 comments on commit 5aa5fac

Please sign in to comment.