imeeting/backend/src/main/resources/application-dev.yml

41 lines
1.3 KiB
YAML
Raw Normal View History

server:
port: ${SERVER_PORT:8081}
logging:
level:
root: info
io.grpc: debug
io.grpc.netty.shaded.io.grpc.netty: debug
com.imeeting.config.grpc: debug
com.imeeting.grpc: debug
com.imeeting.service.realtime.impl.RealtimeMeetingGrpcSessionServiceImpl: debug
com.imeeting.service.realtime.impl.AsrUpstreamBridgeServiceImpl: debug
spring:
datasource:
url: ${SPRING_DATASOURCE_URL:jdbc:postgresql://127.0.0.1:5432/imeeting_db}
username: ${SPRING_DATASOURCE_USERNAME:postgres}
password: ${SPRING_DATASOURCE_PASSWORD:postgres}
data:
redis:
host: ${SPRING_DATA_REDIS_HOST:127.0.0.1}
port: ${SPRING_DATA_REDIS_PORT:6379}
password: ${SPRING_DATA_REDIS_PASSWORD:}
database: ${SPRING_DATA_REDIS_DATABASE:15}
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
unisbase:
security:
jwt-secret: ${SECURITY_JWT_SECRET:change-me-dev-jwt-secret-32bytes}
internal-auth:
secret: ${INTERNAL_AUTH_SECRET:change-me-dev-internal-secret}
app:
server-base-url: ${APP_SERVER_BASE_URL:http://127.0.0.1:${server.port}}
upload-path: ${APP_UPLOAD_PATH:D:/data/imeeting/uploads/}
imeeting:
2026-06-05 07:07:45 +00:00
h5:
base-url: ${IMEETING_H5_BASE_URL:http://127.0.0.1:3000}
audio:
ffmpeg-path: D:\tools\exe\ffmpeg-master-latest-win64-gpl-shared\bin\ffmpeg.exe