A web client that uses external web services to provide additional features and a more “complete” music experience.
No Data
Note [06-04-2020]: I'm no longer actively maintaining this project, but please do let me know when you're encountering critical issues preventing you from using this extension.
Mopify is a web client for Mopidy. Instead of most other Mopidy web clients, Mopify aims to provide a complete music experience.
Some of the features that are included in Mopify:
Installing Mopify is easy. Make sure you have installed Python 3, Mopidy 3 and Mopidy-Spotify 4 (or higher) and enabled the HTTP Extension.
For people interested in installing it without sudo on OS X: take a look at this thread https://github.com/dirkgroenen/mopidy-mopify/issues/211#issuecomment-274239172
Install using PIP:
python3 -m pip install mopidy-mopify
Install on Arch Linux (AUR):
bash yaourt -S mopidy-mopify
After installing Mopify, you can enable it by adding the following options to your Mopidy config file (optional):
[mopify] enabled = true debug = false
Mopify will notify you when a new version is available. To update Mopify to its new version you can use the following command:
python3 -m pip install --upgrade Mopidy-Mopify
Or use the automatic updating feature which is available since version 1.4.1.
To get started with Mopify, check out the Wiki.
After installing the Mopidy client, you can use a modern browser (like Firefox or Chrome) to access it using your server IP and Mopidy web port. For example:
http://192.168.1.2:6680/mopify/.
Problems or ideas? Please submit a new issue so I can improve Mopify!
Nodejs, Grunt and Bower are development dependencies of Mopify. You'll need to install these programs in order to build and contribute to Mopify.
Before you can start developing, you'll have to install some programs and clone the repo to your local machine.
npm install -g grunt-cli bower
git clone [email protected]:dirkgroenen/mopidy-mopify.git
npm install && bower install
You're now ready to start developing. To start the build, watch process and a web server run:
grunt watch
This will start a web server running on port
8000.
When you change the files in the
/src/directory, grunt will automatically rebuild and lint the project.
When you want to deploy your changed version, you have to run
grunt package. This will create a new
Mopidy-Mopifyweb extension package.
See the ./CHANGELOG.md for a list of all changes during version upgrades.