An open API service indexing awesome lists of open source software.

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

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
```