Set up project structure

This commit is contained in:
2024-12-13 13:55:53 +01:00
commit 2383c59441
20 changed files with 747 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
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%"
---
###############################
### Development environment ###
###############################
spring:
config:
activate:
on-profile: development
---
##########################
### Docker environment ###
##########################
spring:
config:
activate:
on-profile: docker
---
##############################
### Production environment ###
##############################
spring:
config:
activate:
on-profile: production