13 lines
580 B
Plaintext
13 lines
580 B
Plaintext
|
|
# Used both at deploy time (docker-compose.yml) and by CI (as a repo secret).
|
||
|
|
IMAGE=repo.explewd.com/explewd/fullhouse
|
||
|
|
HOST_PORT=3080
|
||
|
|
|
||
|
|
# Spotify app credentials — developer.spotify.com/dashboard. Needs a
|
||
|
|
# registered redirect URI matching SPOTIFY_HOST_REDIRECT_URI below
|
||
|
|
# exactly (Spotify does exact string matching, trailing slash included),
|
||
|
|
# plus a separate one for the guest PKCE flow: <your domain>/ (root,
|
||
|
|
# no path — see client/src/lib/pkce.ts).
|
||
|
|
SPOTIFY_CLIENT_ID=
|
||
|
|
SPOTIFY_CLIENT_SECRET=
|
||
|
|
SPOTIFY_HOST_REDIRECT_URI=https://fullhouse.yourdomain.com/api/spotify/callback
|