Redis 'Beyond Cache' Hackathon submission. A web app where users can sync YouTube videos with music from Spotify.
You'll need the following to run the web app and api:
- Node.js and npm
- Git, to clone this repository
- Spotify App, note the
Client IDandClient Secretfields returned by Spotify, you will need to enter those in the project's environment files. Make sure to configure the Redirect URIs in Spotify, by default set this tohttp://localhost:8080/api/login/spotify/complete
First, clone the git repository:
$ git clone https://github.com/KovalRomanK/Redis-Beyond-Cache-2020.gitThen, cd into the repository:
$ cd Redis-Beyond-Cache-2020cd into the web app folder:
$ cd webInstall the necessary libraries using npm
$ npm installStart the React development server and visit http://localhost:8000 in your browser
$ npm startcd into the api folder:
$ cd apiInstall the necessary libraries using npm
$ npm installRename example.env to .env.local and replace XXX values with your own.
Build the server
$ npm run buildStart the development server
$ npm run serve