Daugavpils, 2019/03/02
# Run using `go run`
cd cmd/chatserver && go run main.go
cd cmd/client && go run main.go
# Build binaries
cd cmd/chatserver && go build
cd cmd/client && go builddocker build -t chatserver .
docker run --rm --publish 9999:9999 chatserver- Go Proverbs by Rob Pike
- 7 common mistakes in Go and when to avoid them by Steve Francia
- Best Practices for Industrial Programming by Peter Bourgon
- Advanced Testing with Go by Mitchell Hashimoto
- Things in Go I Never Use by Mat Ryer
- JustForFunc: Programming in Go by Francesc Campoy
- Go Lift by John Cinnamond
- Twelve Go Best Practices by Francesc Campoy