Skip to content

Commit

Permalink
#268 [feat] dev 환경 배포 방식 수정
Browse files Browse the repository at this point in the history
현재 dev에서는 어떤 로깅도 하고 있지 않습니다
dev 환경에서 사용자의 입출력을 확인하기 위해서
script를 수정했습니다.
  • Loading branch information
KWY0218 committed Jun 16, 2024
1 parent a786cae commit 828029b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run_new_was.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fi

if [ "$DEPLOYMENT_GROUP_NAME" == "dev" ]
then
nohup java -jar -Dserver.port=${TARGET_PORT} -Dspring.profiles.active=dev /home/ubuntu/operation/operation-api/build/libs/operation-api-0.0.1-SNAPSHOT.jar > /dev/null 2> /dev/null < /dev/null &
nohup java -jar -Dserver.port=${TARGET_PORT} -Dspring.profiles.active=dev /home/ubuntu/operation/operation-api/build/libs/operation-api-0.0.1-SNAPSHOT.jar > nohup.out 2>&1 </dev/null &
echo "> Now new WAS runs at ${TARGET_PORT}."
fi
sleep 10
Expand Down

0 comments on commit 828029b

Please sign in to comment.