-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy path.env.example
More file actions
41 lines (34 loc) · 1.48 KB
/
Copy path.env.example
File metadata and controls
41 lines (34 loc) · 1.48 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
PORT=3000
DATABASE_URL=postgresql://user:password@localhost:5432/payd
NODE_ENV=development
# ─── Logging/Monitoring/ELK ─────────────────────────────
LOG_LEVEL=info
LOG_FORMAT=json
LOG_DIR=logs
# ─── Elasticsearch ─────────────────────────────────────
ELASTICSEARCH_URL=http://localhost:9200
ELASTICSEARCH_USERNAME=
ELASTICSEARCH_PASSWORD=
ELASTICSEARCH_INDEX_PREFIX=payd
ELASTICSEARCH_ENABLED=false
# ─── Logstash ──────────────────────────────────────────
LOGSTASH_HOST=localhost
LOGSTASH_PORT=5044
# ─── Kibana ────────────────────────────────────────────
KIBANA_URL=http://localhost:5601
# ─── Alerting ─────────────────────────────────────────
ALERT_EMAIL_ENABLED=false
ALERT_EMAIL_FROM=alerts@payd.dev
ALERT_EMAIL_TO=
SMTP_HOST=
SMTP_PORT=587
SMTP_USER=
SMTP_PASS=
ERROR_RATE_THRESHOLD=10
RESPONSE_TIME_THRESHOLD_MS=5000
ALERT_COOLDOWN_MS=300000
# ─── Tracing ──────────────────────────────────────────
TRACING_ENABLED=true
TRACING_SAMPLE_RATE=1.0
SERVICE_NAME=payd-backend
SERVICE_VERSION=1.0.0