mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 08:15:37 +00:00
13 lines
570 B
Properties
13 lines
570 B
Properties
# This file contains properties related to the database configuration
|
|
#
|
|
#
|
|
spring.jpa.properties.hibernate.enable_lazy_load_no_trans=true
|
|
spring.datasource.db-name=gameyfin_db
|
|
spring.datasource.url=jdbc:h2:file:${gameyfin.db}/${spring.datasource.db-name}
|
|
spring.datasource.username=gfadmin
|
|
spring.datasource.password=gameyfin
|
|
spring.datasource.driverClassName=org.h2.Driver
|
|
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
|
|
spring.jpa.hibernate.ddl-auto=update
|
|
spring.jpa.open-in-view=true
|
|
spring.jpa.properties.hibernate.event.merge.entity_copy_observer=allow |