13 lines
461 B
Properties
13 lines
461 B
Properties
|
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
|