Golang/Echo codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.
This codebase was created to demonstrate a fully fledged fullstack application built with Golang/Echo including CRUD operations, authentication, routing, pagination, and more.
Please check the official golang installation guide before you start. Official Documentation
make sure your ~/.*shrc have those variable:
➜ echo $GOPATH
/Users/zitwang/test/
➜ echo $GOROOT
/usr/local/go/
➜ echo $PATH
...:/usr/local/go/bin:/Users/zitwang/test//bin:/usr/local/go//bin
For more info and detailed instructions please check this guide: Setting GOPATH
https://golang.github.io/dep/docs/installation.html
Clone this repository to your $GOPATH:
➜ git clone https://github.com/xesina/golang-echo-realworld-example-app.git $GOPATH/src/github.com/xesina/golang-echo-realworld-example-app
Or simply use the following command which will handle cloning the repo:
➜ go get -u -v github.com/xesina/golang-echo-realworld-example-app
Switch to the repo folder
➜ cd $GOPATH/src/github.com/xesina/golang-echo-realworld-example-app
➜ dep ensure -v
➜ go run main.go
➜ go build
➜ go test ./...