Example solution to an introductory course I led on Golang
Documentation originally in PDF format
Unofficial Golang Training Guide 101, 102, 103
go install
to install all go dependenciescd www
npm install
to install all frontend dependenciesnpm run build
to 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:8080
to view the running site.