This is the Go backend code for the Vue.js tutorial on Scotch.io. In the tutorial we build a events bulletin board application and cover the basics of Vue.
Please read the server.go
file for elaborate comments.
If you are new to Go, read my book or read the working code of the project which is taught in the book here.
- install Go
go get github.com/thewhitetulip/go-vue-events
- go run server.go
- Open localhost:8080 in your browser
- Install Docker 2.``` docker build --tag go-vue-events:1.0 .
3.```
docker run --publish 8000:8080 --detach --name gve go-vue-events:1.0
docker rm --force gve