Note
This project is currently under development
The goal of this project is to create a webapp that can do some useful things with Spotify playlists. A features that are of interest for me are different sortings, a way to sync two or more playlists together and maybe a ripoff https://soundiiz.com/tutorial/spotify-to-youtube 😉
The Docker container for this project is available at
ghcr.io/derlev/spotify-playlist-utilities
Docker command:
docker run -p 5000:5000 ghcr.io/derlev/spotify-playlist-utilities:latest
or
Docker compose:
- Copy the
docker-compose.example.yml
asdocker-compose.yml
into your root folder - Run the command below
docker compose up
Variable | Description | Default |
---|---|---|
PORT |
Specifies the port the webserver runs on | 5000 |
Tag | Version of app |
---|---|
latest |
Latest stable release |
main |
Latest release from main branch |
short commit sha | Release from specific commit |
Below is the folder structure of which part of the app uses files and folders the other part does not
spotify-playlist-utilities/
├─ assets/
├─ components/
├─ public/
├─ src/
├─ .eslintignore
├─ .eslintrc.json
├─ index.html
├─ tsconfig.json
├─ vite.config.ts
spotify-playlist-utilities/
├─ lib/
├─ server/
├─ .eslintignore.server
├─ .eslintrc.server.json
├─ tsconfig.server.json
├─ webpack.config.js