Skip to content

Commit

Permalink
🐛 fix(docker-compose.yml): change exposed port from 8080 to 8084 to a…
Browse files Browse the repository at this point in the history
…void conflicts with other services

🐛 fix(example.stack.env): update SPOTIPY_REDIRECT_URI to use port 8084 instead of 8080 to match the exposed port in docker-compose.yml
🐛 fix(server.py): update PORT variable to 8084 to align with the exposed port in docker-compose.yml
  • Loading branch information
Nat1anWasTaken committed Nov 19, 2023
1 parent bf60b47 commit 55eb98e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
volumes:
- "./configs:/configs"
ports:
- "8080:8080"
- "8084:8084"
networks:
- lava

Expand Down
2 changes: 1 addition & 1 deletion example.stack.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TOKEN=
SPOTIFY_CLIENT_ID=
SPOTIFY_CLIENT_SECRET=
SPOTIPY_REDIRECT_URI=http://localhost:8080
SPOTIPY_REDIRECT_URI=http://localhost:8084
2 changes: 1 addition & 1 deletion script/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import socketserver
import sys

PORT = 8080
PORT = 8084


class Handler(BaseHTTPRequestHandler):
Expand Down

0 comments on commit 55eb98e

Please sign in to comment.