Add .env.example

This commit is contained in:
2026-03-21 09:31:03 +01:00
parent 788e193c8a
commit 7a795e7fd3

19
.env.example Normal file
View File

@@ -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