Skip to content

Commit 3e264b5

Browse files
add back config that was highlighted as a false positive
1 parent 5e04800 commit 3e264b5

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

docker/.env

Lines changed: 0 additions & 1 deletion
This file was deleted.

docker/docker-compose.integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
ports:
2323
- "8082:8082"
2424
environment:
25-
CP_CDK_DATASOURCE_URL: jdbc:postgresql://db:${INT_DB_PORT}/appdb
25+
CP_CDK_DATASOURCE_URL: jdbc:postgresql://db:5432/appdb
2626
CP_CDK_DATASOURCE_USERNAME: app
2727
CP_CDK_DATASOURCE_PASSWORD: app
2828
SERVER_PORT: 8082

src/main/resources/application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ spring:
44

55
datasource:
66
# Override these via env in each environment
7-
url: ${CP_CDK_DATASOURCE_URL}
7+
url: ${CP_CDK_DATASOURCE_URL:jdbc:postgresql://localhost:55432/appdb}
88
username: ${CP_CDK_DATASOURCE_USERNAME:app}
99
password: ${CP_CDK_DATASOURCE_PASSWORD:app}
1010
hikari:

0 commit comments

Comments
 (0)