Skip to content

Instantly share code, notes, and snippets.

@ncherro
Created February 5, 2013 18:15
Show Gist options
  • Save ncherro/4716429 to your computer and use it in GitHub Desktop.
Save ncherro/4716429 to your computer and use it in GitHub Desktop.
settings.py file for mopidy with a HTTP front end
MPD_SERVER_HOSTNAME = u'::'
SPOTIFY_USERNAME = u'YOUR-USERNAME'
SPOTIFY_PASSWORD = u'YOUR-PASSWORD'
HTTP_SERVER_HOSTNAME = u'::'
HTTP_SERVER_PORT = 6680
HTTP_SERVER_STATIC_DIR = u'/var/www/mopidy/current/public'
LOCAL_MUSIC_PATH = u'/home/bbox/music'
LOCAL_TAG_CACHE_FILE = u'/home/bbox/tag_cache'
FRONTENDS = (
u'mopidy.frontends.mpd.MpdFrontend',
u'mopidy.frontends.mpris.MprisFrontend',
u'mopidy.frontends.http.HttpFrontend',
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment