infra: removed occurences of alfred_api_key (not implemented after all)

This commit is contained in:
2025-12-24 08:11:30 +01:00
parent d10c9160f3
commit c5e4a5e1a7
3 changed files with 0 additions and 7 deletions

View File

@@ -52,9 +52,6 @@ LLM_PROVIDER=deepseek
# Memory storage directory (inside container) # Memory storage directory (inside container)
MEMORY_STORAGE_DIR=/data/memory MEMORY_STORAGE_DIR=/data/memory
# API Key for alfred (used by LibreChat custom endpoint)
ALFRED_API_KEY=alfred-secret-key
# External Services (Optional) # External Services (Optional)
# TMDB API Key (for movie metadata) # TMDB API Key (for movie metadata)
TMDB_API_KEY=your-tmdb-key TMDB_API_KEY=your-tmdb-key

View File

@@ -157,7 +157,6 @@ init-dotenv:
@sed -i.bak "s|CREDS_KEY=.*|CREDS_KEY=$$(openssl rand -hex 16)|" .env @sed -i.bak "s|CREDS_KEY=.*|CREDS_KEY=$$(openssl rand -hex 16)|" .env
@sed -i.bak "s|CREDS_IV=.*|CREDS_IV=$$(openssl rand -hex 8)|" .env @sed -i.bak "s|CREDS_IV=.*|CREDS_IV=$$(openssl rand -hex 8)|" .env
@sed -i.bak "s|MEILI_MASTER_KEY=.*|MEILI_MASTER_KEY=$$(openssl rand -base64 32)|" .env @sed -i.bak "s|MEILI_MASTER_KEY=.*|MEILI_MASTER_KEY=$$(openssl rand -base64 32)|" .env
@sed -i.bak "s|ALFRED_API_KEY=.*|ALFRED_API_KEY=$$(openssl rand -base64 24)|" .env
@rm -f .env.bak @rm -f .env.bak
@echo "$(G)✅ .env created with generated secrets!$(R)" @echo "$(G)✅ .env created with generated secrets!$(R)"
@echo "$(T)⚠️ Don't forget to add your API keys:$(R)" @echo "$(T)⚠️ Don't forget to add your API keys:$(R)"

View File

@@ -78,9 +78,6 @@ services:
# Endpoints # Endpoints
ENDPOINTS: custom ENDPOINTS: custom
# Custom endpoint pointing to alfred
CUSTOM_API_KEY: ${ALFRED_API_KEY:-alfred-secret-key}
# Debug (optional) # Debug (optional)
DEBUG_LOGGING: ${DEBUG_LOGGING:-false} DEBUG_LOGGING: ${DEBUG_LOGGING:-false}
DEBUG_CONSOLE: ${DEBUG_CONSOLE:-false} DEBUG_CONSOLE: ${DEBUG_CONSOLE:-false}