Skip to content

Install Spotisub from source

Fabio Valentino edited this page Sep 20, 2024 · 5 revisions

Installing from source is useful if you want to use the latest features.

These are usually available on the development branch.

Prerequisite

Create an APP on https://developer.spotify.com/dashboard and put this as redirect URI http://127.0.0.1:8080/

Building the docker image:

  1. Clone the repo
git clone https://github.com/blastbeng/spotisub
cd spotisub
  1. Change branch (Optional)
git checkout other_branch_name
  1. Compile the docker image
docker compose -f docker-compose.build.yml build
  1. Run the init script:
docker compose up -d
cd /opt/projects/spotisub
docker exec -it spotisub ./first_run.sh
docker compose down

This is necessary, to generate the cache file used by spotify authentication

Remember to modifiy the Environment variables inside docker-compose.yml.

The docker image is available at https://hub.docker.com/r/blastbeng/spotisub/tags

Installing without docker:

WORK IN PROGRESS