go-vue-events
go-vue-events copied to clipboard
Go with Vue2.0; fork of https://github.com/chenkie/vue-events-bulletin;
Vue Events Bulletin Board
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.
Building the app
- install Go
-
go get github.com/thewhitetulip/go-vue-events
- go run server.go
- Open localhost:8080 in your browser
Build in Docker
- 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
Remove docker image
docker rm --force gve