Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.3 KB

NOTES.md

File metadata and controls

42 lines (31 loc) · 1.3 KB

Build Status

SynCloud Queue

Create your own tracklist by searching sounds that you like and adding them to your tracklist queue. You can set the playlist on autoplay mode and the tracks will play sequentially.

Running locally

  1. cd ./syncloud-queue
  2. yarn or npm install
  3. yarn start or npm run start

Useful links for development

Global state

{
    // an ID of the current song that is currently
    // playing in the tracklist
    // DEFAULT: -1
    currentTrackPlayingID: number,

    // a global queue of tracks added by the user
    // DEFAULT: []
    tracklist: array
}

License