forked from DataDog/stickerlandia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 682 Bytes
/
Copy path.env.example
File metadata and controls
28 lines (22 loc) · 682 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
# Sticker Award Service Configuration
# Server Configuration
SERVER_PORT=8080
SERVER_HOST=localhost
# Database Configuration
DATABASE_HOST=localhost
DATABASE_PORT=5432
DATABASE_USER=sticker_user
DATABASE_PASSWORD=sticker_password
DATABASE_NAME=sticker_awards
DATABASE_SSL_MODE=disable
# Full database URL (alternative to individual settings)
# DATABASE_URL=postgres://sticker_user:sticker_password@localhost:5432/sticker_awards?sslmode=disable
# Kafka Configuration
KAFKA_BROKERS=localhost:9092
KAFKA_GROUP_ID=sticker-award-service
# External Services
CATALOGUE_BASE_URL=http://localhost:8080
CATALOGUE_TIMEOUT=30
# Logging Configuration
LOGGING_LEVEL=info
LOGGING_FORMAT=json