💻 Backend part of nowplayify
- Run these commands
# clone backend code
$ git clone https://github.com/qeude/nowplayify-api.git
$ cd nowplayifi-api
$ touch .env
- In the
.env
file add these lines with your spotify developer informations
CLIENT_ID=<YOUR_SPOTIFY_CLIENT_ID>
CLIENT_SECRET=<YOUR_SPOTIFY_CLIENT_SECRET>
NODE_ENV=development
- Then run
# install dependencies
$ yarn install
# start local server
$ yarn start