summaryrefslogtreecommitdiff
path: root/src/main/resources/application-dev.yml
blob: d3fd5a7875bfe89806d6d032584d6c7d91ff515c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
spring:
  docker:
    compose:
      file: ./dev-compose.yml

  security:
    oauth2:
      client:
        registration:
          custom:
            client-name: App-Dev
            client-id: app-dev
            client-secret: 9MQWatEcgkC1WISSAFUGaFGbyEHh8rAy
            scope:
              - openid
        provider:
          custom:
            issuer-uri: https://dnpm.dev/auth/realms/intern
            user-name-attribute: name

app:
  rest:
    uri: http://localhost:9000/bwhc/etl/api
  #kafka:
  #  topic: test
  #  response-topic: test_response
  #  servers: localhost:9094
  security:
    admin-user: admin
    admin-password: "{noop}very-secret"
    enable-oidc: "true"

server:
  port: 8000