meeting, notification 실행환경 설정

This commit is contained in:
djeon
2025-10-23 23:53:28 +09:00
42 changed files with 190 additions and 28 deletions
+11 -5
View File
@@ -24,7 +24,7 @@ spring:
format_sql: true
use_sql_comments: true
hibernate:
ddl-auto: ${DDL_AUTO:update}
ddl-auto: ${JPA_DDL_AUTO:update}
# Redis Configuration
data:
@@ -43,7 +43,7 @@ spring:
# Server Configuration
server:
port: ${SERVER_PORT:8082}
port: ${SERVER_PORT:8084}
# JWT Configuration
jwt:
@@ -65,8 +65,8 @@ azure:
connection-string: ${AZURE_BLOB_CONNECTION_STRING:}
container-name: ${AZURE_BLOB_CONTAINER_NAME:recordings}
eventhub:
connection-string: ${AZURE_EVENTHUB_CONNECTION_STRING:}
name: ${AZURE_EVENTHUB_NAME:transcription-events}
connection-string: ${EVENTHUB_CONNECTION_STRING:}
name: ${EVENTHUB_NAME:transcription-events}
consumer-group: ${AZURE_EVENTHUB_CONSUMER_GROUP:$Default}
# Actuator Configuration
@@ -99,6 +99,7 @@ springdoc:
# Logging Configuration
logging:
level:
root: ${LOG_LEVEL_ROOT:INFO}
com.unicorn.hgzero.stt: ${LOG_LEVEL_APP:DEBUG}
org.springframework.web: ${LOG_LEVEL_WEB:INFO}
org.springframework.security: ${LOG_LEVEL_SECURITY:DEBUG}
@@ -109,4 +110,9 @@ logging:
console: "%d{yyyy-MM-dd HH:mm:ss} - %msg%n"
file: "%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n"
file:
name: ${LOG_FILE_PATH:logs/stt.log}
name: ${LOG_FILE:logs/stt-service.log}
logback:
rollingpolicy:
max-file-size: 10MB
max-history: 7
total-size-cap: 100MB