mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
🎧☁️ Your Personal Streaming Service
https://www.navidrome.org
airsonicmadsonicmedia-servermusicmusic-servernavidromeopensubsonicraspberry-piself-hostedstreamerstreaming-apistreaming-audiosubsonicsubsonic-server
api | ||
conf | ||
controllers | ||
models | ||
repositories | ||
routers | ||
scanner | ||
tests | ||
utils | ||
.gitignore | ||
.gopmfile | ||
.travis.yml | ||
LICENSE | ||
main.go | ||
README.md |
GoSonic
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 ;)
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