Add docker-java and ClickHouse JDBC dependencies, RuntimeConfig and ClickHouseConfig Spring components, AsyncConfig with deployment thread pool, and runtime/clickhouse config sections in application.yml. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
spring:
|
|
application:
|
|
name: cameleer-saas
|
|
jpa:
|
|
open-in-view: false
|
|
hibernate:
|
|
ddl-auto: validate
|
|
flyway:
|
|
enabled: true
|
|
locations: classpath:db/migration
|
|
security:
|
|
oauth2:
|
|
resourceserver:
|
|
jwt:
|
|
issuer-uri: ${LOGTO_ISSUER_URI:}
|
|
jwk-set-uri: ${LOGTO_JWK_SET_URI:}
|
|
|
|
management:
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: health,info
|
|
endpoint:
|
|
health:
|
|
show-details: when-authorized
|
|
|
|
cameleer:
|
|
jwt:
|
|
expiration: 86400 # 24 hours in seconds
|
|
private-key-path: ${CAMELEER_JWT_PRIVATE_KEY_PATH:}
|
|
public-key-path: ${CAMELEER_JWT_PUBLIC_KEY_PATH:}
|
|
identity:
|
|
logto-endpoint: ${LOGTO_ENDPOINT:}
|
|
m2m-client-id: ${LOGTO_M2M_CLIENT_ID:}
|
|
m2m-client-secret: ${LOGTO_M2M_CLIENT_SECRET:}
|
|
runtime:
|
|
max-jar-size: 209715200
|
|
jar-storage-path: ${CAMELEER_JAR_STORAGE_PATH:/data/jars}
|
|
base-image: ${CAMELEER_RUNTIME_BASE_IMAGE:cameleer-runtime-base:latest}
|
|
docker-network: ${CAMELEER_DOCKER_NETWORK:cameleer}
|
|
agent-health-port: 9464
|
|
health-check-timeout: 60
|
|
deployment-thread-pool-size: 4
|
|
container-memory-limit: ${CAMELEER_CONTAINER_MEMORY_LIMIT:512m}
|
|
container-cpu-shares: ${CAMELEER_CONTAINER_CPU_SHARES:512}
|
|
bootstrap-token: ${CAMELEER_AUTH_TOKEN:}
|
|
cameleer3-server-endpoint: ${CAMELEER3_SERVER_ENDPOINT:http://cameleer3-server:8081}
|
|
clickhouse:
|
|
url: ${CLICKHOUSE_URL:jdbc:clickhouse://clickhouse:8123/cameleer}
|