From 86e564ddb4e27b82302394e189a5f49a1c90f120 Mon Sep 17 00:00:00 2001 From: AleixMT Date: Mon, 29 Jan 2024 19:51:21 +0100 Subject: [PATCH] CHANGED: default port of operador in dev mode changes to have default value 5432 and value --- src/main/resources/application-dev.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application-dev.properties b/src/main/resources/application-dev.properties index 57c99a6..90ad777 100644 --- a/src/main/resources/application-dev.properties +++ b/src/main/resources/application-dev.properties @@ -3,7 +3,7 @@ #################################### # Set connection to the desired table of DB using URL -spring.datasource.url=jdbc:postgresql://localhost:5432/book-a-book-operador +spring.datasource.url=jdbc:postgresql://localhost:${PGPORT:5432}/book-a-book-operador # Database credentials spring.datasource.username=aleixmt