Files
XpenselyServer/src/main/resources/application.properties
T
Cedric 7ad72119a8
Build and Deploy Spring Boot Server / build (push) Successful in 1m13s
fix secrets no longer needed
2026-05-14 23:46:40 +02:00

17 lines
558 B
Properties

#Server
spring.application.name=XpenselyServer
#Security
spring.security.enabled=false
spring.security.oauth2.resourceserver.jwt.issuer-uri=https://accounts.google.com
# PostgreSQL Configuration
spring.datasource.url=jdbc:postgresql://postgresdb:${DB_PORT}/${DB_P_NAME}
spring.datasource.username=${DB_USERNAME}
spring.datasource.password=${DB_PASSWORD}
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