fix(env): Sync .env.example with actual .env variables

- Added LIBRARIES_ROOT_PATH to .env.example (was commented out)
- Removed ADMIN_UI_LISTEN_ADDR (admin-ui no longer exists)
- Improved documentation for LIBRARIES_ROOT_PATH variable

Note: .env changes (removed ADMIN_UI_LISTEN_ADDR) are local only
due to .gitignore - users should update their .env manually.
This commit is contained in:
2026-03-06 15:07:24 +01:00
parent ff34b2bbf4
commit 1dca1099cf

View File

@@ -41,8 +41,10 @@ DATABASE_URL=postgres://stripstream:stripstream@postgres:5432/stripstream
MEILI_URL=http://meilisearch:7700 MEILI_URL=http://meilisearch:7700
# ============================================================================= # =============================================================================
# Optional - Development only # Storage Configuration
# ============================================================================= # =============================================================================
# Path to libraries directory (default: /libraries in Docker) # Path to libraries directory
# LIBRARIES_ROOT_PATH=/libraries # In Docker: leave as default /libraries
# For local dev: set to your local libraries folder path
LIBRARIES_ROOT_PATH=/libraries