From 7a795e7fd39c42f3b85cebf568efd3012632c4a0 Mon Sep 17 00:00:00 2001 From: Gregor Klevze Date: Sat, 21 Mar 2026 09:31:03 +0100 Subject: [PATCH] Add .env.example --- .env.example | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..05c3002 --- /dev/null +++ b/.env.example @@ -0,0 +1,19 @@ +# Example env file — copy to .env and fill real values (DO NOT COMMIT .env) +# Generate a secure API key: `openssl rand -hex 32` or `python -c "import secrets;print(secrets.token_urlsafe(32))"` + +# Gateway +API_KEY=change-me-to-a-strong-random-value +CLIP_URL=http://clip:8000 +BLIP_URL=http://blip:8000 +YOLO_URL=http://yolo:8000 +QDRANT_SVC_URL=http://qdrant-svc:8000 + +# Qdrant wrapper (qdrant-svc) +QDRANT_HOST=qdrant +QDRANT_PORT=6333 +COLLECTION_NAME=images +VECTOR_DIM=512 + +# Gateway runtime +VISION_TIMEOUT=300 +MAX_IMAGE_BYTES=52428800