-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.test.example
More file actions
37 lines (31 loc) · 806 Bytes
/
.env.test.example
File metadata and controls
37 lines (31 loc) · 806 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
36
37
USE_MOCK_PROVIDERS=true
# PostgreSQL Configuration
DB_HOST=postgres
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=postgres
DB_NAME=notifications_test
# PostgreSQL Connection Pool Settings
DB_MAX_OPEN_CONNS=25
DB_MAX_IDLE_CONNS=25
DB_CONN_MAX_LIFETIME_MINUTES=5
DB_QUERY_TIMEOUT_SECONDS=5
# Server Configuration
SERVER_PORT=8081
SERVER_HOST=0.0.0.0
REQUEST_TIMEOUT_SECONDS=5
# RabbitMQ Configuration
RABBITMQ_HOST=rabbitmq
RABBITMQ_PORT=5672
RABBITMQ_USER=guest
RABBITMQ_PASS=guest
RABBITMQ_SMS_QUEUE=sms_notifications_test
RABBITMQ_EMAIL_QUEUE=email_notifications_test
RABBITMQ_SLACK_QUEUE=slack_notifications_test
# RabbitMQ Dead Letter Queue Configuration
RABBITMQ_DLQ_PREFIX=dlq_
# Retry Configuration
MAX_RETRY_ATTEMPTS=3
INITIAL_RETRY_DELAY_MS=1000
MAX_RETRY_DELAY_MS=10000
PROCESS_TIMEOUT_SECONDS=5