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.
This commit is contained in:
@@ -5,3 +5,5 @@ DB_USER=root
|
|||||||
DB_PASSWORD=yourpassword
|
DB_PASSWORD=yourpassword
|
||||||
DB_NAME=whattowatch
|
DB_NAME=whattowatch
|
||||||
PORT=3000
|
PORT=3000
|
||||||
|
TMDB_API_KEY=your-API-key
|
||||||
|
TMDB_API_TOKEN=your-API-token
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
# database or a cache. For examples, see the Awesome Compose repository:
|
# database or a cache. For examples, see the Awesome Compose repository:
|
||||||
# https://github.com/docker/awesome-compose
|
# https://github.com/docker/awesome-compose
|
||||||
services:
|
services:
|
||||||
server:
|
what-to-watch:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
environment:
|
environment:
|
||||||
@@ -48,4 +48,3 @@ services:
|
|||||||
# secrets:
|
# secrets:
|
||||||
# db-password:
|
# db-password:
|
||||||
# file: db/password.txt
|
# file: db/password.txt
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user