- 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.
51 lines
1.8 KiB
Plaintext
51 lines
1.8 KiB
Plaintext
# Stripstream Librarian - Environment Configuration
|
|
|
|
# =============================================================================
|
|
# REQUIRED - Change these values in production!
|
|
# =============================================================================
|
|
|
|
# Master key for Meilisearch authentication (required)
|
|
MEILI_MASTER_KEY=change-me-in-production
|
|
|
|
# Bootstrap token for initial API admin access (required)
|
|
# Use this token for the first API calls before creating proper API tokens
|
|
API_BOOTSTRAP_TOKEN=change-me-in-production
|
|
|
|
# =============================================================================
|
|
# Services Configuration
|
|
# =============================================================================
|
|
|
|
# API Service
|
|
API_LISTEN_ADDR=0.0.0.0:8080
|
|
API_BASE_URL=http://api:8080
|
|
|
|
# Indexer Service
|
|
INDEXER_LISTEN_ADDR=0.0.0.0:8081
|
|
INDEXER_SCAN_INTERVAL_SECONDS=5
|
|
|
|
# Backoffice Web UI
|
|
BACKOFFICE_PORT=8082
|
|
|
|
# =============================================================================
|
|
# Database Configuration
|
|
# =============================================================================
|
|
|
|
# PostgreSQL connection string
|
|
DATABASE_URL=postgres://stripstream:stripstream@postgres:5432/stripstream
|
|
|
|
# =============================================================================
|
|
# Search Configuration
|
|
# =============================================================================
|
|
|
|
# Meilisearch connection URL
|
|
MEILI_URL=http://meilisearch:7700
|
|
|
|
# =============================================================================
|
|
# Storage Configuration
|
|
# =============================================================================
|
|
|
|
# Path to libraries directory
|
|
# In Docker: leave as default /libraries
|
|
# For local dev: set to your local libraries folder path
|
|
LIBRARIES_ROOT_PATH=/libraries
|