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
|
2025-01-07 23:40:00 +01:00
|
|
|
spring.security.oauth2.resourceserver.jwt.issuer-uri=https://accounts.google.com
|
2024-12-24 23:04:35 +01:00
|
|
|
|
|
|
|
|
# PostgreSQL Configuration
|
2025-01-11 21:37:11 +01:00
|
|
|
spring.datasource.url=jdbc:postgresql://postgresdb:${DB_PORT}/${DB_P_NAME}
|
2025-01-07 23:40:00 +01:00
|
|
|
spring.datasource.username=${DB_USERNAME}
|
|
|
|
|
spring.datasource.password=${DB_PASSWORD}
|
2024-12-24 23:04:35 +01:00
|
|
|
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
|