application-local-dockerless.yml.template (980B)
1 # SPDX-FileCopyrightText: 2025 Swiss Confederation 2 # 3 # SPDX-License-Identifier: MIT 4 5 application: 6 external-url: "" 7 client_id: "" 8 client_id_scheme: "did" 9 signing_key: 10 signing-key-verification-method: "" 11 client-metadata-file: "classpath:/client_metadata.json" 12 13 14 spring: 15 docker: 16 compose: 17 enabled: false 18 file: compose.yaml 19 datasource: 20 driver-class-name: org.postgresql.Driver 21 url: "jdbc:postgresql://localhost:5432/verifier_db" 22 username: "verifier_user" 23 password: "secret" 24 25 mvc: 26 log-resolved-exception: false # see https://stackoverflow.com/a/77147791 27 jpa: 28 hibernate: 29 ddl-auto: create # when starting locally we connect to the db from compose.yml and generate the schema from hibernate 30 31 logging: 32 level: 33 ch.admin.bj.swiyu: DEBUG 34 35 springdoc: 36 show-actuator: true 37 38 webhook: 39 callback-uri: "" 40 #api-key-header: "${WEBHOOK_API_KEY_HEADER:}" 41 #api-key-value: "${WEBHOOK_API_KEY_VALUE:}" 42 callback-interval: 5000