https://github.com/ggyll/reactify
React-Django based Spotify player
https://github.com/ggyll/reactify
Last synced: about 1 year ago
JSON representation
React-Django based Spotify player
- Host: GitHub
- URL: https://github.com/ggyll/reactify
- Owner: GGyll
- Created: 2022-03-04T16:38:48.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-28T08:41:21.000Z (about 3 years ago)
- Last Synced: 2025-01-21T07:11:12.491Z (about 1 year ago)
- Language: Python
- Size: 82 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Reactify
Create rooms for listening to music together, You can create a room and decide if other users have access to play/pause and how many votes are needed to skip the current song.
Written with Django rest-framework as a backend and React (Router V6) on the frontend using mainly functional components.
Music data is pulled by the backend through the Spotify API.

## To run
In spotify/credentials.py update the following to your Spotify API credentials:
`
CLIENT_ID = ''
CLIENT_SECRET = ''
`
In the project directory
`python manage.py runserver`
To run the Django server
Open a new terminal to frontend/ and run
`npm start`
To start the React app
Open [http://localhost:8000](http://localhost:8000) to view it in your browser.