-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.env.example
More file actions
35 lines (28 loc) · 917 Bytes
/
Copy path.env.example
File metadata and controls
35 lines (28 loc) · 917 Bytes
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
# Example environment configuration for nv-based apps
# Copy to .env and adjust values for your environment.
APP_NAME=nv
APP_ENV=development
LOG_LEVEL=info
PORT=8080
DATABASE_URL=postgres://nv:password@localhost:5432/nv?sslmode=disable
REDIS_URL=redis://localhost:6379/0
API_BASE_URL=https://api.example.com
# REQUIRED: API_KEY
API_KEY=
AUTH_JWT_ISSUER=https://auth.example.com
AUTH_JWT_AUDIENCE=nv
AUTH_JWT_SECRET=dev-secret
TLS_CERT_PATH=./certs/dev.crt
TLS_KEY_PATH=./certs/dev.key
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
# Optional values
SENTRY_DSN=
FEATURE_FLAGS=
CACHE_TTL_SECONDS=300
REQUEST_TIMEOUT_SECONDS=30
PUBLIC_KEY="-----BEGIN PUBLIC KEY-----
MIGbMBAGByqGSM49AgEGBSuBBAAjA4GGAAQAwxQCo8vdntY2JOVfGUkd0+hSjNrH
8Cmf4WQT50T19AI3yxIxNJiAVB4FrrzXtx79KtHrWDHTUGgzo+rHU8cNmV0Bpwzr
n1/2xUs5p+Ppc9Yb13iz1d0X6rcrOlsMicK/NwuyqIqQRDL7dJVaHj2HPT+S3sBO
t/JTUNAOQsYquYpPUHs=
-----END PUBLIC KEY-----"