From d9458584fb51e5f6f0ab1a440cfbd11bc87a6704 Mon Sep 17 00:00:00 2001 From: JonatnV <116097178+JonatnV@users.noreply.github.com> Date: Fri, 22 Aug 2025 16:59:41 -0500 Subject: [PATCH] Update application.properties --- src/main/resources/application.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 35b376a..c7df152 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,7 +1,7 @@ ## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties) spring.datasource.url=jdbc:postgresql://localhost:5432/postgres_demo -spring.datasource.username= postgres -spring.datasource.password= +spring.datasource.username= ${DB_USER:postgres} +spring.datasource.password=${DB_PASSWORD:password} # The SQL dialect makes Hibernate generate better SQL for the chosen database spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect