spotify-party

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

MIT License

Stars
15

Installation

Create a virtual environment:

python -m venv venv

Install the requirements

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

Then install this package:

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

Build the assets

Install node and yarn:

# ...

Install the node environment:

yarn

Then build the assets for development:

yarn dev

or production:

yarn prod

Run the development server

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

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

and run the server:

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

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