5
0
mirror of https://github.com/AJMicke/KickerELO.git synced 2026-03-12 22:11:08 +01:00

Get database connection info from envir, rename artifact, make fake 2 vs 2 calculation a little less fake

This commit is contained in:
Anton Micke
2025-03-07 20:48:54 +01:00
parent bffee21de9
commit ccfc3c7023
4 changed files with 6 additions and 8 deletions

View File

@@ -2,12 +2,9 @@ server.port=${PORT:8080}
logging.level.org.atmosphere = warn
spring.mustache.check-template-location = false
# Launch the default browser when starting the application in development mode
vaadin.launch-browser=true
spring.datasource.url=jdbc:mariadb://localhost:3306/kickerelo
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.url=${DATABASE_URI}
spring.datasource.username=${DATABASE_USER}
spring.datasource.password=${DATABASE_PASSWORD}
spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
spring.jpa.hibernate.ddl-auto=validate
spring.jpa.show-sql=false