Skip to content

Commit

Permalink
chore: remove spotify secrets and update homepage
Browse files Browse the repository at this point in the history
* feat(service): update homepage

* fix(service): sterilize spotify secrets

---------

Co-authored-by: linjan <5128657+linjan@users.noreply.github.com>
  • Loading branch information
linjan and linjan committed Nov 23, 2023
1 parent 90f0069 commit e58b467
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion services/homepage/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.7"
services:
### Homepage: A highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations ###
homepage:
image: ghcr.io/benphelps/homepage
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
restart: always
environment:
Expand Down
4 changes: 4 additions & 0 deletions services/your-spotify/.env.template
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,9 @@ DOMAIN=
MONGO_ROOT_USERNAME=
MONGO_ROOT_PASSWORD=

## Spotify secrets ##
SPOTIFY_PUBLIC=
SPOTIFY_SECRET=

## Timezone configuration ##
TZ=
4 changes: 2 additions & 2 deletions services/your-spotify/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ services:
- PORT=8080
- API_ENDPOINT=https://${DOMAIN}/api
- CLIENT_ENDPOINT=https://${DOMAIN}
- SPOTIFY_PUBLIC=a1d12e336796416198e28dbdb0765e71
- SPOTIFY_SECRET=f4caf00b9ee74ade836abefe975936c9
- SPOTIFY_PUBLIC=${SPOTIFY_PUBLIC}
- SPOTIFY_SECRET=${SPOTIFY_SECRET}
- MONGO_ENDPOINT=mongodb://${MONGO_ROOT_USERNAME}:${MONGO_ROOT_PASSWORD}@your-spotify-mongodb:27017/your_spotify?authSource=admin
- TZ=${TZ}
ports:
Expand Down

0 comments on commit e58b467

Please sign in to comment.