-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (29 loc) · 1.1 KB
/
.env.example
File metadata and controls
36 lines (29 loc) · 1.1 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
# ============================================================================
# Spring Boot Environment Variables
# ============================================================================
# 이 파일을 .env로 복사한 후 실제 값을 입력하세요.
# cp .env.example .env
# (.gitignore에 의해 .env는 Git에서 제외됩니다)
# ============================================================================
# --- Profile ---
SPRING_PROFILES_ACTIVE=local
# --- Server ---
SERVER_PORT=8080
# --- Database (MySQL) ---
DATABASE_URL=jdbc:mysql://localhost:3310/app_db?serverTimezone=Asia/Seoul&characterEncoding=UTF-8
DATABASE_USER=app_user
DATABASE_PASSWORD=app_password
# --- Redis ---
REDIS_HOST=localhost
REDIS_PORT=6379
# --- Kafka ---
KAFKA_BOOTSTRAP_SERVERS=localhost:9092
KAFKA_CONSUMER_GROUP_ID=dabom-processor-usage-dev
KAFKA_AUTO_OFFSET_RESET=earliest
KAFKA_POLICY_DEDUP_TTL_SECONDS=3600
KAFKA_USAGE_PERSIST_DEDUP_TTL_SECONDS=600
# --- CORS ---
FRONTEND_URL=http://localhost:3000
# --- Observability (OpenTelemetry) ---
OTEL_SDK_DISABLED=true
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318