-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
53 lines (45 loc) · 1.4 KB
/
Copy path.env.example
File metadata and controls
53 lines (45 loc) · 1.4 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
# Runtime
ENVIRONMENT=local
LOG_LEVEL=INFO
API_SHARED_SECRET=
# Host-run service ports. Leave unset locally to use deterministic worktree ports.
API_HOST=127.0.0.1
# API_PORT=8720
WEB_HOST=127.0.0.1
# WEB_PORT=8730
# WORKER_HEALTH_PORT=8735
# Optional worktree orchestrator reservations. Leave unset for path-hashed ports.
# Use WORKTREE_PORT_BLOCK_START when the orchestrator reserves a small range.
# Use WORKTREE_PRIMARY_PORT when the orchestrator reserves one public port.
# WORKTREE_PRIMARY_PORT_TARGET can be WEB_PORT or API_PORT.
# WORKTREE_PORT_BLOCK_START=
# WORKTREE_PORT_BLOCK_SIZE=10
# WORKTREE_PRIMARY_PORT=
# WORKTREE_PRIMARY_PORT_TARGET=WEB_PORT
# Docker-published example infra ports. Leave unset locally to use deterministic worktree ports.
POSTGRES_HOST_BIND=127.0.0.1
# POSTGRES_HOST_PORT=8740
REDIS_HOST_BIND=127.0.0.1
# REDIS_HOST_PORT=8750
# Example database
POSTGRES_DB=app
POSTGRES_USER=app
POSTGRES_PASSWORD=app
POSTGRES_URL=postgresql://app:app@127.0.0.1:8740/app
DATABASE_URL=postgresql://app:app@127.0.0.1:8740/app
# Example cache/queue
REDIS_URL=redis://127.0.0.1:8750/0
REDIS_QUEUE_NAME=jobs.default
# Observability
SENTRY_DSN=
OTEL_EXPORTER_OTLP_ENDPOINT=
OTEL_SERVICE_NAME=508-devkit
LANGFUSE_BASE_URL=
LANGFUSE_PUBLIC_KEY=
LANGFUSE_SECRET_KEY=
# LLM provider defaults
OPENAI_API_KEY=
OPENAI_BASE_URL=https://api.openai.com/v1
OPENAI_MODEL=gpt-4.1-mini
# Web
WEB_API_BASE_URL=http://127.0.0.1:8720