-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (32 loc) · 1.05 KB
/
Copy path.env.example
File metadata and controls
38 lines (32 loc) · 1.05 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
# Deal Radar project environment
# Backend API
API_HOST=0.0.0.0
API_PORT=8000
API_HTTP_PORT=18000
USE_MOCK_LLM=true
OPENAI_API_KEY=
STRICT_SOURCE_POLICY=false
SEMANTIC_CACHE_THRESHOLD=0.90
SAMPLE_DATA_DIR=./backend/packages/sample-data
# Backend dependencies
# Use these values when running through Docker Compose.
REDIS_URL=redis://redis:6379
CHROMA_URL=http://chromadb:8000
# Use these values when running the API directly on the host instead.
# REDIS_URL=redis://localhost:16379
# CHROMA_URL=http://localhost:18001
# Web frontend
# Server-side calls from Docker should use the API service name.
API_BASE_URL=http://api:8000
# Browser/client calls should use the host-mapped API port.
NEXT_PUBLIC_API_BASE_URL=http://localhost:18000
FRONTEND_PORT=3000
MOBILE_PORT=8081
# Landing site
NEXT_PUBLIC_DASHBOARD_URL=http://localhost:3002
LANDING_PORT=3002
# Mobile app
EXPO_PUBLIC_API_BASE_URL=http://localhost:18000
# Android emulator host bridge, if localhost cannot reach the host API:
# EXPO_PUBLIC_API_BASE_URL=http://10.0.2.2:18000
EXPO_PUBLIC_USE_SAMPLE_FALLBACK=0