33 lines
1.0 KiB
Properties
33 lines
1.0 KiB
Properties
spring.application.name=budger-app
|
|
|
|
server.port=8089
|
|
server.servlet.context-path=/api
|
|
#spring.webflux.base-path=/api
|
|
|
|
spring.profiles.active=dev
|
|
spring.main.web-application-type=servlet
|
|
|
|
server.compression.enabled=true
|
|
server.compression.mime-types=application/json
|
|
|
|
# ???????????? ?????? ????? (?? ????????? 1 ??)
|
|
spring.servlet.multipart.max-file-size=10MB
|
|
spring.servlet.multipart.max-request-size=10MB
|
|
|
|
storage.location: static
|
|
|
|
spring.jackson.default-property-inclusion=non_null
|
|
# Expose prometheus, health, and info endpoints
|
|
#management.endpoints.web.exposure.include=prometheus,health,info
|
|
management.endpoints.web.exposure.include=*
|
|
|
|
# Enable Prometheus metrics export
|
|
management.prometheus.metrics.export.enabled=true
|
|
|
|
telegram.bot.username = expenses_diary_bot
|
|
spring.flyway.enabled=true
|
|
spring.flyway.locations=classpath:db/migration
|
|
spring.flyway.baseline-on-migrate= false
|
|
spring.flyway.schemas=finance
|
|
spring.jpa.properties.hibernate.default_schema=finance
|
|
spring.jpa.properties.hibernate.default_batch_fetch_size=50 |