16 lines
No EOL
476 B
Properties
16 lines
No EOL
476 B
Properties
spring.application.name=FencerJudgeBack
|
|
|
|
# H2 Database Configuration
|
|
spring.datasource.url=jdbc:h2:file:./db;AUTO_SERVER=true
|
|
spring.datasource.driverClassName=org.h2.Driver
|
|
spring.datasource.username=sa
|
|
spring.datasource.password=password
|
|
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
|
|
|
|
# Enable H2 Console
|
|
spring.h2.console.enabled=true
|
|
spring.h2.console.path=/h2-console
|
|
|
|
# Hibernate Configuration
|
|
spring.jpa.hibernate.ddl-auto=update
|
|
spring.jpa.show-sql=true |