🎧☁️ Your Personal Streaming Service https://www.navidrome.org
Find a file
dependabot-preview[bot] 2384665cfb Bump github.com/go-chi/chi from 4.0.2+incompatible to 4.0.3+incompatible
Bumps [github.com/go-chi/chi](https://github.com/go-chi/chi) from 4.0.2+incompatible to 4.0.3+incompatible.
- [Release notes](https://github.com/go-chi/chi/releases)
- [Changelog](https://github.com/go-chi/chi/blob/master/CHANGELOG.md)
- [Commits](https://github.com/go-chi/chi/compare/v4.0.2...v4.0.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-01-10 08:49:18 -05:00
.github/workflows Moved from Travis to GitHub actions 2020-01-04 21:23:24 -05:00
api Removed commented out tests 2020-01-09 22:50:01 -05:00
bin Removed unused scripts (moved to Makefile) 2016-10-10 21:03:21 -04:00
conf Renamed DisableValidation to DisableAuthentication 2020-01-09 22:44:45 -05:00
domain Removed dependency on engine from persistence 2020-01-09 22:44:45 -05:00
engine Removed dependency on engine from persistence 2020-01-09 22:44:45 -05:00
itunesbridge Playlists support (99%) complete! 2016-03-24 13:28:20 -04:00
log Replaced Beego logging 2020-01-09 22:44:45 -05:00
persistence Removed dependency on engine from persistence 2020-01-09 22:44:45 -05:00
scanner Removed dependency on engine from persistence 2020-01-09 22:44:45 -05:00
static Implemented getAvatar 2016-03-21 20:31:28 -04:00
tests Renamed DisableValidation to DisableAuthentication 2020-01-09 22:44:45 -05:00
utils Restore MediaRetrievalController tests 2020-01-09 22:44:45 -05:00
.gitignore Download Jamstash in make setup 2020-01-09 22:44:45 -05:00
app.go Added CORS middleware 2020-01-09 22:44:45 -05:00
go.mod Bump github.com/go-chi/chi from 4.0.2+incompatible to 4.0.3+incompatible 2020-01-10 08:49:18 -05:00
go.sum Bump github.com/go-chi/chi from 4.0.2+incompatible to 4.0.3+incompatible 2020-01-10 08:49:18 -05:00
LICENSE Changing license 2017-04-01 09:21:55 -04:00
main.go Removed (almost) all remaining init() 2020-01-09 22:44:45 -05:00
Makefile Added CORS middleware 2020-01-09 22:44:45 -05:00
mime_types.go Removed (almost) all remaining init() 2020-01-09 22:44:45 -05:00
README.md Removed SubFire from README 2020-01-09 22:50:29 -05:00
wire_gen.go Removed inject lib, only use wire for DI 2020-01-09 22:44:45 -05:00
wire_injectors.go Remove Beego tasks, make Importer available through DI 2020-01-09 22:44:45 -05:00

CloudSonic Server

Build Status Go Report Card

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

CloudSonic is a music collection server and streamer, optmized to run on cheap VPS servers. It implements the Subsonic API

The project's main goals are:

  • Be fully compatible with available Subsonic clients (actively being tested with DSub, Music Stash and Jamstash)
  • Import and use all metadata from iTunes, so that you can optionally keep using iTunes to manage your music
  • Implement Smart Playlists, as iTunes

Supported Subsonic API version

I'm currently trying to implement all functionality from API v1.8.0, with some exceptions.

Check the (almost) up to date compatibility chart for what is working.

Installation

As this is a work in progress, there are no installers yet. To have the server running in your computer, follow the steps in the Development Environment section below, then run it with:

$ export SONIC_MUSICFOLDER="/path/to/your/iTunes Library.xml"
$ make run

The server should start listening for requests. The default configuration is:

  • Port: 4533
  • User: anyone
  • Password: wordpass

To override this or any other configuration, create a file named sonic.toml in the project folder. For all options see the configuration.go file

Development Environment

You will need to install Go 1.13

Then install dependencies:

$ make setup

Some useful commands:

# Start local server (with hot reload)
$ make run

# Run all tests
$ make test

Copying

CloudSonic - Copyright (C) 2017-2020 Deluan Cotts Quintao

The source code is licensed under GNU Affero GPL v3. License is available here