forked from riteshbonthalakoti/HELPDESK.AI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
18 lines (15 loc) · 766 Bytes
/
Copy path.env.example
File metadata and controls
18 lines (15 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Supabase Configuration
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_ANON_KEY=your-anon-key
# Startup Mode
# Set ALLOW_DEGRADED_STARTUP=1 to allow backend startup even if duplicate/RAG models fail to load
# Useful for offline/dev environments where model downloads may not be available
ALLOW_DEGRADED_STARTUP=0
# Sentence Transformers Model Path
# Provide a local path to the sentence-transformers model to avoid downloading from HuggingFace
# If not set, model will be downloaded from HuggingFace (requires internet)
# Example: ./models/all-MiniLM-L6-v2 or /opt/models/all-MiniLM-L6-v2
SENTENCE_TRANSFORMER_MODEL_PATH=
# Readiness Check
# Set REQUIRE_SUPABASE=true to include Supabase configuration in the strict readiness gate
REQUIRE_SUPABASE=false