From eec4567f0cfc92aefa13786d113887066ccf4bce Mon Sep 17 00:00:00 2001 From: Ojus Save Date: Mon, 26 Jan 2026 01:50:21 -0800 Subject: [PATCH] fix: explicitly set CLAWDBOT_CONFIG_PATH to ensure config is loaded --- scripts/render-start.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/render-start.sh b/scripts/render-start.sh index 670865ab9..145efa171 100755 --- a/scripts/render-start.sh +++ b/scripts/render-start.sh @@ -49,7 +49,10 @@ echo "=== Listing ${HOME_CONFIG_DIR}/ ===" ls -la "${HOME_CONFIG_DIR}/" # Start the gateway with token from env var +# Explicitly set CLAWDBOT_CONFIG_PATH to ensure config is loaded from the file we wrote echo "=== Starting gateway with CLAWDBOT_STATE_DIR=${CLAWDBOT_STATE_DIR} ===" +echo "=== Setting CLAWDBOT_CONFIG_PATH=${CONFIG_FILE} ===" +export CLAWDBOT_CONFIG_PATH="${CONFIG_FILE}" exec node dist/index.js gateway \ --port 8080 \ --bind lan \