feature/swagger-oauth-env-config #103

Merged
hitanshu merged 2 commits from hitanshu/CFTunnels:feature/swagger-oauth-env-config into test 2026-01-23 15:53:39 +00:00
2 changed files with 6 additions and 6 deletions
Showing only changes of commit b8b0a4bf30 - Show all commits

View File

@ -1,9 +1,9 @@
api.baseUrl=https://cftunnels.hithomelabs.com api.baseUrl=https://cftunnels.hithomelabs.com
# Production Database Configuration # Production Database Configuration
spring.datasource.url=${PROD_DB_URL:jdbc:postgresql://postgres:5432/cftunnel} spring.datasource.url=${DB_URL}
spring.datasource.username=${PROD_DB_USERNAME:postgres} spring.datasource.username=${POSTGRES_USERNAME}
spring.datasource.password=${PROD_DB_PASSWORD} spring.datasource.password=${POSTGRES_PASSWORD}
spring.datasource.driver-class-name=org.postgresql.Driver spring.datasource.driver-class-name=org.postgresql.Driver
# JPA Configuration # JPA Configuration

View File

@ -1,9 +1,9 @@
api.baseUrl=https://testcf.hithomelabs.com api.baseUrl=https://testcf.hithomelabs.com
# Test Database Configuration - Same as Production # Test Database Configuration - Same as Production
spring.datasource.url=${TEST_DB_URL:jdbc:postgresql://postgres:5432/cftunnel} spring.datasource.url=${DB_URL}
spring.datasource.username=${TEST_DB_USERNAME:postgres} spring.datasource.username=${POSTGRES_USERNAME}
spring.datasource.password=${TEST_DB_PASSWORD} spring.datasource.password=${POSTGRES_PASSWORD}
spring.datasource.driver-class-name=org.postgresql.Driver spring.datasource.driver-class-name=org.postgresql.Driver
# JPA Configuration # JPA Configuration