Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 913 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 913 Bytes

Spotify Sync App

FastAPI application to synchronize 2 different Spotify accounts and copy their liked and recently played tracks and playlists.

Run app in development mode

$ python3 -m venv spotify
$ source spotify/bin/activate
$ pip install -r requirements.txt
$ export PYTHON_ENV=development
$ uvicorn src.main:app --reload

Run app in production mode with Docker Compose

$ docker build -t stivenramireza/spotify-sync:latest .
$ docker push stivenramireza/spotify-sync:latest
$ docker-compose up -d

Run app in production mode with Docker Swarm + Traefik

$ docker build -t stivenramireza/spotify-sync:latest .
$ docker push stivenramireza/spotify-sync:latest
$ docker stack deploy -c stack.yml spotify --with-registry-auth