If you'd like to contribute to the project (that'd be awesome!), take a look at the guide below.
- Fork the project.
- Make sure you have Node.js installed.
- Run
npm install
in thestatify
directory to retrieve all of the dependencies. - Head over to the Spotify Web API Applications page and create a new application for this project. This will allow you to generate client keys.
- Create
local_config.js
in thestatify
directory with the following contents:
// Place all local variables that you would
// not like to get synced to Git in this file.
var config = {};
config.spotify = {};
config.spotify.clientId = "<your Spotify application Client ID>";
config.spotify.clientSecret = "<your Spotify application Client secret>";
// Place any new configuration nodes here
module.exports = config;
- Begin coding! Feel free to check out any outstanding issues, or open an issue to discuss a new feature you think should be added. All suggestions are welcome!