23 lines
674 B
Text
23 lines
674 B
Text
|
|
# Copy this file to .env and fill in real values.
|
||
|
|
# .env is gitignored -- never commit real secrets.
|
||
|
|
# Values must be simple (no spaces / shell-special chars) -- this file is both
|
||
|
|
# parsed by the app and sourced by deploy.sh.
|
||
|
|
|
||
|
|
# --- App login (custom login form) ---
|
||
|
|
MEDIAPI_USERNAME=changeme
|
||
|
|
MEDIAPI_PASSWORD=changeme
|
||
|
|
|
||
|
|
# --- Media ---
|
||
|
|
# colon-separated list of directories to browse
|
||
|
|
MEDIAPI_MEDIA_ROOTS=/localmedia
|
||
|
|
MEDIAPI_PORT=8080
|
||
|
|
|
||
|
|
# --- System: systemd services run as this Linux user ---
|
||
|
|
MEDIAPI_USER=pi
|
||
|
|
|
||
|
|
# --- WiFi access point (re-applied by deploy.sh) ---
|
||
|
|
MEDIAPI_WIFI_COUNTRY=US
|
||
|
|
MEDIAPI_AP_SSID=changeme
|
||
|
|
MEDIAPI_AP_PASSWORD=changeme
|
||
|
|
MEDIAPI_AP_CONN_NAME=mediapi-ap
|