forked from Hithomelabs/CFTunnels
- Hardcode PostgreSQL connection URL to match docker service name 'postgres' - Remove DB_URL environment variable dependency that was causing startup failures - Keep username/password as environment variables for flexibility
13 lines
475 B
Properties
13 lines
475 B
Properties
api.baseUrl=https://testcf.hithomelabs.com
|
|
|
|
# Test Database Configuration - Same as Production
|
|
spring.datasource.url=jdbc:postgresql://postgres:5432/cftunnel
|
|
spring.datasource.username=${POSTGRES_USERNAME}
|
|
spring.datasource.password=${POSTGRES_PASSWORD}
|
|
spring.datasource.driver-class-name=org.postgresql.Driver
|
|
|
|
# JPA Configuration
|
|
spring.jpa.hibernate.ddl-auto=update
|
|
spring.jpa.show-sql=true
|
|
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
|