forked from jumpingmushroom/DiscEcho
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (28 loc) · 1.25 KB
/
Copy path.env.example
File metadata and controls
33 lines (28 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Override the path to your media library (host side).
# Default if unset: /srv/media.
DISCECHO_LIBRARY_PATH=/srv/media
# Numeric GID of the host's `cdrom` group. Find via:
# getent group cdrom | cut -d: -f3
# Defaults to 24 (Debian/Ubuntu convention).
CDROM_GID=24
# Path to the optical drive's SCSI Generic (sg) node. MakeMKV uses
# this for CSS / AACS handshakes and drive control; /dev/sr0 alone
# is not enough for DVD/BD ripping. Find via:
# ls -l /dev/sg* | grep cdrom
# Common values: /dev/sg0, /dev/sg1.
OPTICAL_SG_DEVICE=/dev/sg0
# Optional bearer token. Set only when exposing the daemon beyond a
# trusted LAN; leave empty for the homelab default. When set, the
# daemon enforces `Authorization: Bearer <token>` on every API call.
# DISCECHO_TOKEN=
# IGDB (Internet Game Database) — game-disc manual search.
# Get free credentials at https://dev.twitch.tv/console/apps:
# 1. Register Your Application → category "Game Database"
# 2. Copy the Client ID and generate a Client Secret
# Leaving these blank disables the "Search IGDB" button on game-disc cards.
DISCECHO_IGDB_CLIENT_ID=
DISCECHO_IGDB_CLIENT_SECRET=
# Build args (only consulted when running `docker compose build`).
DISCECHO_VERSION=dev
DISCECHO_COMMIT=unknown
DISCECHO_BUILD_DATE=unknown