application.yml 760 Б
Newer Older
Radch-enko's avatar
Radch-enko включено в состав коммита
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
server:
  port: 8080
  servlet:
    context-path: /api

spring:
  application:
    name: effective-office

  profiles:
    include:
      - repository

  jackson:
    serialization:
      write-dates-as-timestamps: false
    deserialization:
      fail-on-unknown-properties: false
    default-property-inclusion: non_null
    mapper:
      accept-case-insensitive-enums: true

springdoc:
  api-docs:
    path: /api-docs
  swagger-ui:
    path: /swagger-ui.html
    operations-sorter: method
Radch-enko's avatar
Radch-enko включено в состав коммита
29
  packages-to-scan: band.effective.office.backend.app.controller, band.effective.office.backend.feature.authorization.controller
Radch-enko's avatar
Radch-enko включено в состав коммита
30
31
32
33
34
35
36
37
38

management:
  endpoints:
    web:
      exposure:
        include: health,info,metrics
  endpoint:
    health:
      show-details: always