From e71e76882824467e1c8d1d2f5ed95ec76555ab7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CBeeRad=E2=80=9D?= Date: Tue, 30 Dec 2025 12:41:26 +1100 Subject: [PATCH] fix: remove hardcoded placeholder from .env.example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The literal string was being copied to .env.local, causing EACCES errors when the app tried to create /Users//... Now commented out - the code auto-detects using os.homedir() 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .env.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 842366c..9cf18b6 100644 --- a/.env.example +++ b/.env.example @@ -1,6 +1,6 @@ # Database Configuration - SQLite (production ready) -# Paths are auto-detected if not specified -SQLITE_DB_PATH=/Users//Library/Application Support/RA-H/db/rah.sqlite +# Paths use sensible defaults if not specified +# SQLITE_DB_PATH=$HOME/Library/Application Support/RA-H/db/rah.sqlite SQLITE_VEC_EXTENSION_PATH=./vendor/sqlite-extensions/vec0.dylib # AI API Keys (main orchestrator + mini agents)