# 공통 로그 설정
LOG_LEVEL=DEBUG
DEBUG=true

# 성능 모니터링을 위한 최소한의 로그만 활성화
# DEBUG=true로 설정하면 상세한 디버그 로그가 출력됩니다
# LOG_LEVEL=DEBUG로 설정해도 디버그 로그가 출력됩니다

# Database Configuration
PG_HOST=localhost
PG_PORT=5433
PG_USER=ivs
PG_PASSWORD=1234
PG_DATABASE=airun

# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379

# Log Level
LOG_LEVEL=INFO
DEBUG=false
