Files
hlaeja-management/src/main/resources/application.yml
2025-01-16 23:03:38 +01:00

60 lines
1.1 KiB
YAML

spring:
profiles:
active: development
application:
name: "%APP_NAME%"
version: "%APP_VERSION%"
build:
time: "%APP_BUILD_TIME%"
os:
name: "%APP_BUILD_OS_NAME%"
version: "%APP_BUILD_OS_VERSION%"
management:
endpoints:
enabled-by-default: false
web:
exposure:
include: "health,info"
endpoint:
health:
enabled: true
show-details: always
info:
enabled: true
---
###############################
### Development environment ###
###############################
spring:
config:
activate:
on-profile: development
# Templates reloading during development
thymeleaf:
prefix: file:src/main/resources/templates/
cache: false
# Static resources reloading during development
web:
resources:
static-locations: file:src/main/resources/static/
---
##########################
### Docker environment ###
##########################
spring:
config:
activate:
on-profile: docker
---
##############################
### Production environment ###
##############################
spring:
config:
activate:
on-profile: production