Update for Glide usage

This commit is contained in:
Deluan 2016-03-25 12:53:23 -04:00
parent f29ac99b45
commit 781c52f5e8
2 changed files with 8 additions and 5 deletions

View File

@ -34,9 +34,9 @@ You will need to install [Go 1.6](https://golang.org/dl/)
Then install dependencies:
```
$ go get github.com/beego/bee
$ go get github.com/gpmgo/gopm
$ gopm get -v -g
$ go get github.com/beego/bee # bee command line tool
$ go get github.com/Masterminds/glide # dependency manager
$ glide install
```
From here it's a normal [BeeGo](http://beego.me) development cycle. Some useful commands:
@ -46,10 +46,10 @@ From here it's a normal [BeeGo](http://beego.me) development cycle. Some useful
$ bee run
# Start test runner on the browser
$ NOLOG=1 goconvey --port 9090
$ bin/goconvey.sh
# Run all tests
$ go test ./... -v
$ go test $(glide nv) -v
```

3
bin/goconvey.sh Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
NOLOG=1 goconvey --port 9090 -excludedDirs vendor,static,devDb,wiki,bin,tests