summaryrefslogtreecommitdiff
path: root/src/main/resources/application-dev.yml
blob: ed57ec8e63e515559ae1db1d24b4fabe46464adc (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: very-secret-ae3f7a-5a9f-1190
            scope:
              - openid
        provider:
          custom:
            issuer-uri: https://dnpm.dev/auth/realms/intern
            user-name-attribute: name

app:
  rest:
    uri: http://localhost/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