845dc9c293
Build & Test (NowChessSystems) TeamCity build was queued
TOURNAMENT_EXTERNAL_SERVERS (comma-separated URLs) is loaded into TournamentServerRegistry at startup so the bot can park on all servers and replication targets are known without manual API calls after each restart. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
56 lines
1.1 KiB
YAML
56 lines
1.1 KiB
YAML
quarkus:
|
|
http:
|
|
port: 8088
|
|
application:
|
|
name: nowchess-official-bots
|
|
redis:
|
|
hosts: redis://${REDIS_HOST:localhost}:${REDIS_PORT:6379}
|
|
rest-client:
|
|
account-service:
|
|
url: http://localhost:8083
|
|
smallrye-jwt:
|
|
enabled: true
|
|
log:
|
|
level: INFO
|
|
mp:
|
|
jwt:
|
|
verify:
|
|
publickey:
|
|
location: ${JWT_PUBLIC_KEY_PATH:keys/public.pem}
|
|
issuer: nowchess
|
|
|
|
nowchess:
|
|
redis:
|
|
host: localhost
|
|
port: 6379
|
|
prefix: nowchess
|
|
internal:
|
|
secret: 123abc
|
|
tournament:
|
|
service-url: http://localhost:8088
|
|
|
|
"%deployed":
|
|
quarkus:
|
|
log:
|
|
console:
|
|
json: true
|
|
otel:
|
|
traces:
|
|
sampler: parentbased_traceidratio
|
|
sampler-arg: 0.1
|
|
exporter:
|
|
otlp:
|
|
endpoint: ${OTEL_EXPORTER_OTLP_ENDPOINT:http://localhost:4317}
|
|
rest-client:
|
|
account-service:
|
|
url: ${ACCOUNT_SERVICE_URL}
|
|
nowchess:
|
|
redis:
|
|
host: ${REDIS_HOST:localhost}
|
|
port: ${REDIS_PORT:6379}
|
|
prefix: ${REDIS_PREFIX:nowchess}
|
|
internal:
|
|
secret: ${INTERNAL_SECRET}
|
|
tournament:
|
|
service-url: ${TOURNAMENT_SERVICE_URL:http://localhost:8088}
|