-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.env
More file actions
executable file
·38 lines (32 loc) · 1.42 KB
/
sample.env
File metadata and controls
executable file
·38 lines (32 loc) · 1.42 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
# Local devcontainer only. Deployed dev/prod read secrets from Terraform-managed
# Key Vault and never load this file.
# Values below must match the hardcoded dev connection string in
# api/src/EA.Api/appsettings.Development.json (postgres/password/postgres for DB,
# guest/guest for RabbitMQ). Changing them here without updating that file will
# break local `dotnet run` against the devcontainer DB / broker.
# postgres
POSTGRES_USER=
POSTGRES_PASSWORD=
POSTGRES_DB=
# pgadmin
PGADMIN_DEFAULT_EMAIL=
PGADMIN_DEFAULT_PASSWORD=
PGADMIN_CONFIG_SERVER_MODE=
PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED=
# rabbitmq
RABBITMQ_USER=
RABBITMQ_PASSWORD=
# UI production build — set to the deployed API URL (e.g. https://<api-fqdn>).
# Consumed by ui/scripts/generate-environment.mjs via `npm run build:prod`.
# Leave empty for local dev (dev builds use environment.development.ts).
API_URL=
# observability (optional)
# In deployed envs, Terraform injects this as a secret env var on each Container
# App — this local .env plays no role there.
# For local dev this is OPTIONAL: leave empty and the .NET API + Python
# data-engine guard on its absence (no telemetry export, stdout logging
# continues unchanged).
# To test telemetry locally against a scratch App Insights resource, paste its
# full connection string (InstrumentationKey=...;IngestionEndpoint=...;...).
# See docs/runbooks/observability.md for guidance.
APPLICATIONINSIGHTS_CONNECTION_STRING=