13 lines
459 B
INI
13 lines
459 B
INI
spring.main.banner-mode=off
|
|
server.port=8080
|
|
spring.datasource.url=jdbc:h2:file:./data
|
|
spring.datasource.driverClassName=org.h2.Driver
|
|
spring.datasource.username=sa
|
|
spring.datasource.password=password
|
|
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
|
|
spring.jpa.hibernate.ddl-auto=update
|
|
spring.h2.console.enabled=true
|
|
spring.h2.console.settings.trace=false
|
|
spring.h2.console.settings.web-allow-others=false
|
|
jwt.dev-token=my-secret-jwt
|
|
jwt.dev=true |