# Server settings server.port = 8443 server.ssl.enabled = false poseidas.admin.username = admin # Password: testtest poseidas.admin.hashed.password = $2a$10$CZGhlm6QkqHlDEX89cYtyuGKSx2iftevULiP.gvWETYH7riFIzHSG # Datasource spring.datasource.url=jdbc:h2:file:/opt/poseidas/database/poseidas;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE #user/password of the database spring.datasource.username = admin spring.datasource.password = testtest spring.datasource.driver-class-name = org.h2.Driver spring.jpa.database-platform = org.hibernate.dialect.H2Dialect # Hibernate ddl auto (create, create-drop, update): with "update" the database # schema will be automatically updated accordingly to java entities found in # the project spring.jpa.hibernate.ddl-auto = update spring.jpa.hibernate.naming.implicit-strategy = org.hibernate.boot.model.naming.ImplicitNamingStrategyLegacyJpaImpl spring.jpa.hibernate.naming.physical-strategy = org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl # Show or not log for each sql query spring.jpa.show-sql = true logging.level.org.springframework = DEBUG logging.level.de.governikus.eumw = DEBUG