-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
executable file
·43 lines (38 loc) · 1.42 KB
/
Copy path.env
File metadata and controls
executable file
·43 lines (38 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# MySQL
MYSQL_ROOT_PASSWORD=9b93a1dbb636fb194f209789db5c2c32d8aae49095cd2ff7
MYSQL_DATABASE=emfield
MYSQL_USER=emfield
MYSQL_PASSWORD=55c7bb03700fd588fef0c2fc4fd3b63565f3be882cbb3dc5
MYSQL_HOST=mysql
MYSQL_PORT=3306
# Backend
BACKEND_HTTP_ADDR=0.0.0.0:8080
BACKEND_JWT_SECRET=b3976085e7457769cbc719f58e05c20f185adb958c105c1d974e742f080734c4
BACKEND_CORS_ORIGINS=http://your-production-domain.example.com
PUBLIC_WEB_BASE_URL=http://your-production-domain.example.com
BACKEND_DB_DSN=emfield:55c7bb03700fd588fef0c2fc4fd3b63565f3be882cbb3dc5@tcp(mysql:3306)/emfield?charset=utf8mb4&parseTime=True&loc=Local
BACKEND_AI_BASE_URL=http://ai:8001
BACKEND_SIM_BASE_URL=http://sim:8002
AI_GATEWAY_SHARED_TOKEN=73c606d0bd7f22638f5b1ac40dc8159ed6cc789ee00123506d318d3ed4274d4e
# LLM Configuration - Local Ollama
# Using host.docker.internal to access Ollama on macOS host
LLM_BASE_URL=http://host.docker.internal:11434
LLM_API_KEY=ollama
LLM_MODEL=gemini-3-flash-preview:cloud
# GraphRAG (optional)
GRAPH_RAG_ENABLED=false
GRAPH_RAG_INDEX_PATH=app/data/graphrag_index.json
GRAPH_RAG_SEED_TOP_K=4
GRAPH_RAG_EXPAND_HOPS=1
GRAPH_RAG_FINAL_TOP_K=8
GRAPH_RAG_MAX_CONTEXT_CHARS=4000
# Production safety switches
ALLOW_DEMO_SEED=false
DEMO_HARD_FALLBACK=false
# MinIO
MINIO_ENDPOINT=minio:9000
MINIO_ACCESS_KEY=8M4kmruIv4ygAQ1SHdz8
MINIO_SECRET_KEY=DF6Y9tZskdmlsFXhIt701L6Bu4jmVZnKf6rc1BDb
MINIO_BUCKET=emfield-uploads
MINIO_USE_SSL=false
MINIO_SIGNED_URL_EXPIRY=168h