2024-12-24 23:04:35 +01:00
|
|
|
#Server
|
2024-12-22 22:32:48 +01:00
|
|
|
spring.application.name=XpenselyServer
|
2024-12-24 23:04:35 +01:00
|
|
|
|
|
|
|
|
#Security
|
|
|
|
|
spring.security.enabled=false
|
|
|
|
|
#logging.level.org.springframework.security=TRACE
|
|
|
|
|
|
|
|
|
|
# PostgreSQL Configuration
|
|
|
|
|
spring.datasource.url=jdbc:postgresql://localhost:5432/Xpensely
|
|
|
|
|
spring.datasource.username=${XpenselyDBUser}
|
|
|
|
|
spring.datasource.password=${XpenselyDBPW}
|
|
|
|
|
spring.datasource.driver-class-name=org.postgresql.Driver
|
|
|
|
|
|
|
|
|
|
# Hibernate configuration
|
|
|
|
|
spring.jpa.hibernate.ddl-auto=update
|
|
|
|
|
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
|