From a269f28a43a9fc0d75e3bf249fd778ec5faa3eeb Mon Sep 17 00:00:00 2001 From: Toni <81181280+Git-Peacock@users.noreply.github.com> Date: Mon, 9 Feb 2026 12:19:49 +0100 Subject: [PATCH] Add TMDB env vars and rename Docker service Add TMDB_API_KEY and TMDB_API_TOKEN to .env.example to document required TMDB credentials. Rename the Docker Compose service from `server` to `what-to-watch` in compose.yaml to align the service name with the project; also remove an extra trailing blank line. --- .env.example | 4 +++- compose.yaml | 3 +-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index ebc349c..15961f5 100644 --- a/.env.example +++ b/.env.example @@ -4,4 +4,6 @@ DB_PORT=3306 DB_USER=root DB_PASSWORD=yourpassword DB_NAME=whattowatch -PORT=3000 \ No newline at end of file +PORT=3000 +TMDB_API_KEY=your-API-key +TMDB_API_TOKEN=your-API-token \ No newline at end of file diff --git a/compose.yaml b/compose.yaml index 3451469..a4417e8 100644 --- a/compose.yaml +++ b/compose.yaml @@ -8,7 +8,7 @@ # database or a cache. For examples, see the Awesome Compose repository: # https://github.com/docker/awesome-compose services: - server: + what-to-watch: build: context: . environment: @@ -48,4 +48,3 @@ services: # secrets: # db-password: # file: db/password.txt -