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

https://github.com/dfm/spotify-party

🎧 Keep listening to music with your friends even from a social distance
https://github.com/dfm/spotify-party

Last synced: about 1 year ago
JSON representation

🎧 Keep listening to music with your friends even from a social distance

Awesome Lists containing this project

README

          

## Installation

Create a virtual environment:

```bash
python -m venv venv
```

Install the requirements

```bash
venv/bin/python -m pip install -r requirements.txt
```

Then install this package:

```bash
venv/bin/python -m pip install -e .
```

## Build the assets

Install node and yarn:

```
# ...
```

Install the node environment:

```bash
yarn
```

Then build the assets for development:

```bash
yarn dev
```

or production:

```bash
yarn prod
```

## Run the development server

Edit the configuration file (there is an example in `config/template.toml`) then create the database:

```bash
venv/bin/python -m spotify_party /path/to/your/config.toml --create-tables
```

and run the server:

```bash
venv/bin/python -m spotify_party /path/to/your/config.toml
```

Then navigate to http://localhost:5000 or similar.