Example solution to an introductory course I led on Golang
Documentation originally in PDF format
Unofficial Golang Training Guide 101, 102, 103
go installto install all go dependenciescd wwwnpm installto install all frontend dependenciesnpm run buildto bundle frontend to be served statically in go
go run .to run the app ("." is all-inclusive and will run main.go & server.go)http://localhost:8080to view the running site.