From a13f6747529041b93df940e153ce966ca8b13def Mon Sep 17 00:00:00 2001 From: Shrikant Sharat Kandula Date: Thu, 7 Oct 2021 17:02:49 +0530 Subject: [PATCH] Make port customizable from env variable (#8288) --- .../appsmith-server/src/main/resources/application.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/server/appsmith-server/src/main/resources/application.properties b/app/server/appsmith-server/src/main/resources/application.properties index 64a32c7327..aab6043c39 100644 --- a/app/server/appsmith-server/src/main/resources/application.properties +++ b/app/server/appsmith-server/src/main/resources/application.properties @@ -1,3 +1,5 @@ +server.port=${PORT:8080} + # This property allows us to override beans during testing. This is useful when we want to set different configurations # and different parameters during test as compared to production. If this property is disabled, some tests will fail. spring.main.allow-bean-definition-overriding=true