Fixing build again

This commit is contained in:
Deluan 2016-02-26 11:39:14 -05:00
parent b36b151732
commit 625332692f
2 changed files with 25 additions and 8 deletions

View File

@ -2,7 +2,7 @@
path = github.com/deluan/gosonic path = github.com/deluan/gosonic
[deps] [deps]
github.com/astaxie/beego = tag:v1.6.0 github.com/astaxie/beego = commit:92d0b9a
github.com/dhowden/itl = commit:35d15a3 github.com/dhowden/itl = commit:35d15a3
github.com/HouzuoGuo/tiedot = tag:3.2 github.com/HouzuoGuo/tiedot = tag:3.2
github.com/smartystreets/goconvey = tag:1.6.0 github.com/smartystreets/goconvey = tag:1.6.0

View File

@ -18,8 +18,8 @@ The project's main goals are:
[DSub](http://www.subsonic.org/pages/apps.jsp#dsub), [DSub](http://www.subsonic.org/pages/apps.jsp#dsub),
[Jamstash](http://www.subsonic.org/pages/apps.jsp#jamstash)) [Jamstash](http://www.subsonic.org/pages/apps.jsp#jamstash))
* Use all metadata from iTunes * Use all metadata from iTunes
* Use iTunes interface to manage your music * You can keep using iTunes to manage your music
* Update play counts, last played dates, ratings, etc.. on iTunes * Update play counts, last played dates, ratings, etc.. on iTunes (at least on Mac OS)
* Learning Go ;) [![Gopher](https://blog.golang.org/favicon.ico)](https://golang.org) * Learning Go ;) [![Gopher](https://blog.golang.org/favicon.ico)](https://golang.org)
Currently implementing [API version](http://www.subsonic.org/pages/api.jsp#versions): Currently implementing [API version](http://www.subsonic.org/pages/api.jsp#versions):
@ -27,16 +27,33 @@ Currently implementing [API version](http://www.subsonic.org/pages/api.jsp#versi
* _1.0.0 ← In progress_ * _1.0.0 ← In progress_
* 1.2.0 * 1.2.0
### Development Environment
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
```
From here it's a normal Go development cycle:
* Test with `go test ./.. -v`
* Start local server with `bee run`
* Start test runner with `goconvey`
### Useful Links ### Useful Links
#### Frameworks/Projects #### Frameworks/Projects
https://github.com/golang/go/wiki/Projects * https://github.com/golang/go/wiki/Projects
https://golanglibs.com/ * https://golanglibs.com/
https://github.com/deluan/tuner * https://github.com/deluan/tuner
#### REST/Web #### REST/Web
http://beego.me/ * http://beego.me/
#### DB #### DB
https://github.com/HouzuoGuo/tiedot https://github.com/HouzuoGuo/tiedot