From 778c7ce6dc54f2810f6ba62d1cf115ef3927a37d Mon Sep 17 00:00:00 2001 From: himeshr Date: Wed, 4 Dec 2024 16:09:29 +0530 Subject: [PATCH] avniproject/avni-webapp#1337 | Use proper tunnel db port for remote_db --- makefiles/staging.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefiles/staging.mk b/makefiles/staging.mk index c36571f4c..5cfd0b4f6 100644 --- a/makefiles/staging.mk +++ b/makefiles/staging.mk @@ -15,12 +15,12 @@ start_server_staging: build_server OPENCHS_IAM_USER_ACCESS_KEY=$(OPENCHS_STAGING_IAM_USER_ACCESS_KEY) \ OPENCHS_IAM_USER_SECRET_ACCESS_KEY=$(OPENCHS_STAGING_IAM_USER_SECRET_ACCESS_KEY) \ OPENCHS_BUCKET_NAME=staging-user-media \ - OPENCHS_DATABASE_URL=jdbc:postgresql://localhost:6015/openchs?currentSchema=public \ + OPENCHS_DATABASE_URL=jdbc:postgresql://localhost:5433/openchs?currentSchema=public \ java -jar avni-server-api/build/libs/avni-server-0.0.1-SNAPSHOT.jar debug_server_staging: build_server -mkdir -p /tmp/openchs && sudo ln -s /tmp/openchs /var/log/openchs - OPENCHS_DATABASE_URL=jdbc:postgresql://localhost:6015/openchs?currentSchema=public \ + OPENCHS_DATABASE_URL=jdbc:postgresql://localhost:5433/openchs?currentSchema=public \ AVNI_IDP_TYPE=cognito \ OPENCHS_CLIENT_ID=$(OPENCHS_STAGING_APP_CLIENT_ID) \ OPENCHS_USER_POOL=$(OPENCHS_STAGING_USER_POOL_ID) \