https://github.com/ronelgazar/spotify-utils
A Django site for listening to Spotify together
https://github.com/ronelgazar/spotify-utils
django fullstack javascript nodejs npm python reac spotify
Last synced: 4 months ago
JSON representation
A Django site for listening to Spotify together
- Host: GitHub
- URL: https://github.com/ronelgazar/spotify-utils
- Owner: ronelgazar
- Created: 2021-01-16T00:15:42.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2026-03-19T10:10:49.000Z (4 months ago)
- Last Synced: 2026-03-20T03:25:20.992Z (4 months ago)
- Topics: django, fullstack, javascript, nodejs, npm, python, reac, spotify
- Language: Python
- Homepage:
- Size: 8.66 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spotify-utils
### Made by: Ron Elgazar
Inspired by:The code for Tech With Tim's "Django & React Full Stack Web App Tutorial" series.
## Setup Instructions
### Install Required Python Modules
```bash
pip install -r requirements.txt
```
### Start Web Server
To start the web server you need to run the following sequence of commands.
First cd into the Spotify-Utils folder.
```bash
cd "Spotify-Utils"
```
Next run the django web server.
```bash
python manage.py runserver
```
### [Install Node.js](https://nodejs.org/en/)
### Install Node Modules
First cd into the ```frontend``` folder.
```bash
cd frontend
```
Next install all dependicies.
```bash
npm i
```
### Compile the Front-End
Run the production compile script
```bash
npm run build
```
or for development:
```bash
npm run dev
```