-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
61 lines (49 loc) · 1.71 KB
/
.env.example
File metadata and controls
61 lines (49 loc) · 1.71 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
56
57
58
59
60
61
# .env.example
# SemantiK Architect — local development (WSL)
# --- Application ---
APP_NAME=semantik-architect
APP_ENV=development
DEBUG=true
LOG_LEVEL=INFO
LOG_FORMAT=console
# --- Security ---
# Required for production if API auth / secret-based protection is enabled
API_SECRET=change-me-in-production-secure-random-string
AUTH_ALGORITHM=HS256
# --- Persistence ---
# Absolute path to the repo root used by backend tools/router confinement
FILESYSTEM_REPO_PATH=/mnt/c/mycode/SemantiK_Architect/SemantiK_Architect
# --- Grammar Engine ---
# Absolute path to the cloned GF Resource Grammar Library
GF_LIB_PATH=/mnt/c/mycode/SemantiK_Architect/SemantiK_Architect/gf-rgl
# Path to the compiled PGF grammar artifact
PGF_PATH=/mnt/c/mycode/SemantiK_Architect/SemantiK_Architect/gf/semantik_architect.pgf
# --- Messaging & State (Redis) ---
# Local WSL/dev value
REDIS_URL=redis://localhost:6379/0
REDIS_QUEUE_NAME=architect_tasks
SESSION_TTL_SEC=600
# --- External Services ---
WIKIDATA_SPARQL_URL=https://query.wikidata.org/sparql
WIKIDATA_TIMEOUT=30
# --- Worker ---
WORKER_CONCURRENCY=2
# --- Tools Runner / Execution Controls ---
ARCHITECT_TOOLS_MAX_OUTPUT_CHARS=200000
ARCHITECT_TOOLS_DEFAULT_TIMEOUT_SEC=600
ARCHITECT_ENABLE_AI_TOOLS=0
# --- Observability ---
OTEL_SERVICE_NAME=semantik-architect-api
# Uncomment only if you run an OTLP collector locally
# OTEL_EXPORTER_OTLP_ENDPOINT=http://jaeger:4317
# --- Optional DevOps / AI ---
GITHUB_TOKEN=
REPO_URL=https://github.com/your-org/semantik-architect
GOOGLE_API_KEY=
AI_MODEL_NAME=gemini-1.5-pro
# --- Storage Backend (optional production mode) ---
# STORAGE_BACKEND=s3
# AWS_ACCESS_KEY_ID=
# AWS_SECRET_ACCESS_KEY=
# AWS_REGION=us-east-1
# AWS_BUCKET_NAME=semantik-architect-grammars