From c5e4a5e1a70e237c495a94a3a36362bb389b97a5 Mon Sep 17 00:00:00 2001 From: Francwa Date: Wed, 24 Dec 2025 08:11:30 +0100 Subject: [PATCH] infra: removed occurences of alfred_api_key (not implemented after all) --- .env.example | 3 --- Makefile | 1 - docker-compose.yml | 3 --- 3 files changed, 7 deletions(-) diff --git a/.env.example b/.env.example index 7a4ccd0..2e39f26 100644 --- a/.env.example +++ b/.env.example @@ -52,9 +52,6 @@ LLM_PROVIDER=deepseek # Memory storage directory (inside container) MEMORY_STORAGE_DIR=/data/memory -# API Key for alfred (used by LibreChat custom endpoint) -ALFRED_API_KEY=alfred-secret-key - # External Services (Optional) # TMDB API Key (for movie metadata) TMDB_API_KEY=your-tmdb-key diff --git a/Makefile b/Makefile index a0c3ac7..a01ab00 100644 --- a/Makefile +++ b/Makefile @@ -157,7 +157,6 @@ init-dotenv: @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|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 @echo "$(G)✅ .env created with generated secrets!$(R)" @echo "$(T)⚠️ Don't forget to add your API keys:$(R)" diff --git a/docker-compose.yml b/docker-compose.yml index 731310e..a9b7017 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -78,9 +78,6 @@ services: # Endpoints ENDPOINTS: custom - # Custom endpoint pointing to alfred - CUSTOM_API_KEY: ${ALFRED_API_KEY:-alfred-secret-key} - # Debug (optional) DEBUG_LOGGING: ${DEBUG_LOGGING:-false} DEBUG_CONSOLE: ${DEBUG_CONSOLE:-false}