More experimenting with tiedot

This commit is contained in:
Deluan
2016-02-27 03:35:01 -05:00
parent 4f9054b738
commit ecc0df9e7c
14 changed files with 175 additions and 35 deletions
+10 -3
View File
@@ -40,9 +40,16 @@ $ gopm get -v -g
From here it's a normal [BeeGo](http://beego.me) development cycle. Some useful commands:
* Start local server with `bee run`
* Start test runner on the browser with `NOLOG=1 goconvey --port 9090`
* Test from command line with `go test ./... -v`
```bash
# Start local server (with hot reload)
$ bee run
# Start test runner on the browser
$ NOLOG=1 goconvey --port 9090
# Runa all tests
$ go test ./... -v
```
### Useful Links