All checks were successful
		
		
	
	Java CI with Maven / build (push) Successful in 47s
				
			Co-authored-by: Sebastian Böckelmann <uqpko@student.kit.edu> Reviewed-on: Sebastian/TimeManager#43
		
			
				
	
	
		
			13 lines
		
	
	
		
			461 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			461 B
		
	
	
	
		
			INI
		
	
	
	
	
	
spring.datasource.driverClassName=org.h2.Driver
 | 
						|
spring.datasource.url=jdbc:h2:file:~/testdb;MODE=LEGACY
 | 
						|
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
 | 
						|
spring.h2.console.enabled=true
 | 
						|
spring.h2.console.path=/console
 | 
						|
spring.flyway.enabled=false
 | 
						|
spring.liquibase.enabled=false
 | 
						|
 | 
						|
demo.webapp.jwtSecret=demoWebappSecretKey
 | 
						|
demo.webapp.jwtExpirationMS=86400000
 | 
						|
spring.sql.init.mode=always
 | 
						|
spring.jpa.hibernate.ddl-auto=create-drop
 | 
						|
spring.jpa.show-sql=true |