add spring boot profiles

This commit is contained in:
2025-04-07 16:10:37 +02:00
parent 5c54671faa
commit 82100340b4

View File

@@ -1,3 +1,32 @@
spring: spring:
application: application:
name: hlaeja-service name: hlaeja-service
profiles:
active: development
---
###############################
### Development environment ###
###############################
spring:
config:
activate:
on-profile: development
---
##########################
### Docker environment ###
##########################
spring:
config:
activate:
on-profile: docker
---
##############################
### Production environment ###
##############################
spring:
config:
activate:
on-profile: production