🎧☁️ Your Personal Streaming Service https://www.navidrome.org
Find a file
2016-02-29 13:56:09 -05:00
api Better tests organization 2016-02-27 18:42:08 -05:00
conf Retrofitting with tests 2016-02-29 10:04:30 -05:00
controllers Better test messaging 2016-02-27 19:28:29 -05:00
models Some refactoring 2016-02-29 13:56:09 -05:00
repositories Added empty tests in each package, to get the more precise coverage percentage 2016-02-29 13:38:41 -05:00
routers DSub only works with POSTs... 2016-02-29 11:49:27 -05:00
scanner Some refactoring 2016-02-29 13:56:09 -05:00
tests Retrofitting with tests 2016-02-29 10:04:30 -05:00
utils Some refactoring 2016-02-29 13:56:09 -05:00
.gitignore Retrofitting with tests 2016-02-29 10:04:30 -05:00
.gopmfile removed tiedot, introduced ledisdb 2016-02-28 00:55:36 -05:00
.travis.yml fixing the build 2016-02-28 01:27:28 -05:00
LICENSE Adding Apache 2.0 license 2016-02-25 16:28:03 -05:00
main.go Removed doc code. For the API documentation see Subsonic site 2016-02-24 19:22:01 -05:00
README.md More experimenting with tiedot 2016-02-27 03:35:01 -05:00

GoSonic

Build Status

About

This is still a work in progress, and has no releases available

GoSonic is an application that implements the Subsonic API, but instead of having its own music library like the original Subsonic application, it interacts directly with your iTunes library.

The project's main goals are:

  • Full compatibility with the available Subsonic clients (only being tested with DSub, Jamstash)
  • Use all metadata from iTunes
  • You can keep using iTunes to manage your music
  • Update play counts, last played dates, ratings, etc.. on iTunes (at least on Mac OS)
  • Learning Go ;) Gopher

Supported Subsonic API version:

  • 1.0.0 ← In progress
  • 1.2.0

Development Environment

You will need to install Go 1.6

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 BeeGo development cycle. Some useful commands:

# 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

Frameworks/Projects

REST/Web

DB

Testing