- Delete environment/, app/, deployment/, runtime/ packages (source + tests) - Delete apikey/ package (tied to environments, table will be dropped) - Strip AsyncConfig to empty @EnableAsync (no more deploymentExecutor bean) - Remove EnvironmentService dependency from TenantService - Remove environment/app isolation from TenantIsolationInterceptor - Remove environment seeding from BootstrapDataSeeder - Refactor ServerApiClient to use LogtoConfig instead of RuntimeConfig - Add server-endpoint property to LogtoConfig (was in RuntimeConfig) - Remove runtime config section and multipart config from application.yml Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
server:
|
|
servlet:
|
|
context-path: /platform
|
|
|
|
spring:
|
|
application:
|
|
name: cameleer-saas
|
|
datasource:
|
|
url: ${SPRING_DATASOURCE_URL:jdbc:postgresql://postgres:5432/cameleer_saas}
|
|
username: ${SPRING_DATASOURCE_USERNAME:cameleer}
|
|
password: ${SPRING_DATASOURCE_PASSWORD:cameleer_dev}
|
|
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:
|
|
identity:
|
|
logto-endpoint: ${LOGTO_ENDPOINT:}
|
|
logto-public-endpoint: ${LOGTO_PUBLIC_ENDPOINT:}
|
|
m2m-client-id: ${LOGTO_M2M_CLIENT_ID:}
|
|
m2m-client-secret: ${LOGTO_M2M_CLIENT_SECRET:}
|
|
spa-client-id: ${LOGTO_SPA_CLIENT_ID:}
|
|
audience: ${CAMELEER_OIDC_AUDIENCE:https://api.cameleer.local}
|
|
server-endpoint: ${CAMELEER3_SERVER_ENDPOINT:http://cameleer3-server:8081}
|