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
- Host: GitHub
- URL: https://github.com/dfm/spotify-party
- Owner: dfm
- License: mit
- Created: 2020-03-21T00:10:31.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2021-03-20T03:10:50.000Z (about 5 years ago)
- Last Synced: 2025-03-27T10:21:33.923Z (about 1 year ago)
- Language: Python
- Homepage: https://distance.dfm.io
- Size: 229 KB
- Stars: 15
- Watchers: 2
- Forks: 2
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.