From 6af7b05c53da34a6b9ee5ce6cf78ee1641b356ea Mon Sep 17 00:00:00 2001 From: Kshitij <160704796+kshitij-ka@users.noreply.github.com> Date: Sun, 3 May 2026 17:26:42 +0530 Subject: [PATCH] docs: clarify PYTHON_BIN validation rules in env example. --- web/server/.env.example | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web/server/.env.example b/web/server/.env.example index 77d1a14..6603804 100644 --- a/web/server/.env.example +++ b/web/server/.env.example @@ -7,5 +7,7 @@ GROQ_API_KEY=your_groq_api_key_here # Server port (optional, defaults to 5000) PORT=5000 -# Python bin (for venv); optional -PYTHON_BIN=/path/to/bin/python +# Python interpreter for the retrieval daemon (optional, defaults to "python"). +# Must be "python", "python3", or an absolute path to a Python 3 executable. +# Do not set this to an arbitrary binary -- the value is validated on startup. +# PYTHON_BIN=/path/to/venv/bin/python3