-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
55 lines (48 loc) · 2.26 KB
/
.env.example
File metadata and controls
55 lines (48 loc) · 2.26 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
44
45
46
47
48
49
50
51
52
53
54
55
# ============================================================
# == Environment settings ==
# ============================================================
# Options: development, staging, production
ENVIRONMENT=development
# ============================================================
# == Auth Dev Mode ==
# ============================================================
# WARNING: Never enable in production! Bypasses JWT validation
AUTH_DEV_MODE=false
# Optional – override to simulate a specific user in dev mode
# AUTH_DEV_USER_ID=92d194cb-bdcb-5439-949b-8d705671ef4f
# ============================================================
# == Database settings ==
# ============================================================
DB_HOST=database
DB_PORT=5432
DB_NAME=postgres
DB_USER=postgres
DB_PASSWORD=postgres
# ============================================================
# == Website Backend settings ==
# ============================================================
BASEDOSDADOS_BASE_URL='https://backend.basedosdados.org'
JWT_ALGORITHM=django-jwt-algorithm
JWT_SECRET_KEY=django-secret-key
# ============================================================
# == Google Cloud settings ==
# ============================================================
GOOGLE_BIGQUERY_PROJECT=google-project-name
GOOGLE_SERVICE_ACCOUNT=/app/credentials/chatbot-sa.json
# ============================================================
# == LLM settings ==
# ============================================================
MODEL_URI=google_genai:gemini-2.5-flash
MODEL_TEMPERATURE=0.2
THINKING_LEVEL=low
# ============================================================
# == LangSmith settings ==
# ============================================================
LANGSMITH_TRACING=true
LANGSMITH_API_KEY=langsmith-api-key
LANGSMITH_PROJECT=langsmith-project-name
# ============================================================
# == Logging settings ==
# ============================================================
LOG_LEVEL=DEBUG
LOG_DIAGNOSE=true