https://github.com/georgejkaye/playlist-control
Tool for partygoers to contribute to the playlist
https://github.com/georgejkaye/playlist-control
Last synced: 2 months ago
JSON representation
Tool for partygoers to contribute to the playlist
- Host: GitHub
- URL: https://github.com/georgejkaye/playlist-control
- Owner: georgejkaye
- Created: 2024-03-04T21:24:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-07T22:35:33.000Z (2 months ago)
- Last Synced: 2025-04-07T23:28:18.625Z (2 months ago)
- Language: TypeScript
- Size: 553 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# party-playlist
Tool for partygoers to contribute to the playlist
## Development
Set up the environment variables:
```
# .envCLIENT_PORT=
SERVER_PORT_A=# Just for deploying with traefik
CLIENT_HOST=
# Used within client to talk to server
SERVER_HOST=
SERVER_PROTOCOL=SPOTIFY_APP_ID=
```Create your secrets:
- `key.secret`: key used by the server to hash passwords
- `spotify.secret`: app secret generated by SpotifyRun the `dev` docker compose file:
```sh
# new
docker compose -f docker-compose.dev.yml up --build
# old
docker-compose -f docker-compose.dev.yml up --build
```