-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 fix(docker-compose.yml): change exposed port from 8080 to 8084 to a…
…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
1 parent
bf60b47
commit 55eb98e
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ services: | |
volumes: | ||
- "./configs:/configs" | ||
ports: | ||
- "8080:8080" | ||
- "8084:8084" | ||
networks: | ||
- lava | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
import socketserver | ||
import sys | ||
|
||
PORT = 8080 | ||
PORT = 8084 | ||
|
||
|
||
class Handler(BaseHTTPRequestHandler): | ||
|