Convert your playlist between spotify and youtube with ease 🎶
https://playlist-converter.netlify.com/
If you want to contribute to the repo, please open a issue so we can discuss the bug or feature :)
First of all, fork and clone the repo.
Then, install all the dependencies (both frontend and backend live on the same repo, so you'll need to install dependencies for both):
# install root dependencies
> yarn
# install frontend dependencies
> cd app && yarn
# install server dependencies
> cd ../server && yarn
Then, on the server-side, you'll have to add environment variables related to
spotify and youtube creating a .env/
file on server/
folder, following
server/.env.example.
After that, you're good to start running the project locally, so:
Run these two commands on separated terminal tabs:
# starts the frontend
> yarn start:app
# starts the server
> yarn start:server