-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
47 lines (37 loc) · 2.8 KB
/
Copy path.env.example
File metadata and controls
47 lines (37 loc) · 2.8 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
# Evolith Tracker — environment variables.
# Copy values into your deployment secret/config map; do not commit real secrets.
# ─── Runtime ─────────────────────────────────────────────────────────────
TRACKER_ENV=development
PORT=3000
# ─── CORS ────────────────────────────────────────────────────────────────
TRACKER_WEB_ORIGIN=http://localhost:4200
# ─── PostgreSQL ──────────────────────────────────────────────────────────
DATABASE_URL=postgresql://evolith:localdev@localhost:5432/evolith_tracker
# ─── Redis ───────────────────────────────────────────────────────────────
REDIS_URL=redis://localhost:6379
# ─── Evolith Core (server-side only — never exposed to browser) ──────────
CoreApi__BaseUrl=http://localhost:8000/api/v1
CoreApi__TimeoutMs=8000
CoreApi__MockFallback=false
# ─── Repository identity (for ADR-0080 repositoryRef/workspaceRef) ───────
CoreApi__RepositoryUrl=https://github.com/beyondnetcode/evolith_tracker
CoreApi__RepositoryRevision=HEAD
CoreApi__WorkspaceRefPrefix=tracker
CoreApi__LocalSatellitePath=
CoreApi__LocalCorePath=
# ─── UMS Authentication (JWT) ───────────────────────────────────────────
# BFF validates user Bearer tokens at the perimeter. Core receives repositoryRef
# + workspaceRef + operationId only; never user tokens or API keys.
Authentication__Ums__Authority=
Authentication__Ums__MetadataAddress=
Authentication__Ums__Audience=evolith-tracker
Authentication__Ums__Issuer=
Authentication__Ums__RequireHttpsMetadata=true
# ─── Default tenant ──────────────────────────────────────────────────────
DEFAULT_TENANT_ID=
# ─── OpenTelemetry ──────────────────────────────────────────────────────
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318
OTEL_SERVICE_NAME=evolith-tracker-api
# ─── Browser app -> Tracker BFF ──────────────────────────────────────────
VITE_TRACKER_ENV=development
VITE_TRACKER_BFF_BASE_URL=http://localhost:3000/api