From ec78cdcc0368bb0d04c1fd5aa3007491b11040c5 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Sun, 7 Apr 2024 15:26:34 +0900 Subject: [PATCH 01/18] =?UTF-8?q?feat:=20cd=20=EA=B3=BC=EC=A0=95=EC=97=90?= =?UTF-8?q?=20=EC=95=94=ED=98=B8=ED=99=94=20=ED=82=A4=20=EB=8F=99=EC=A0=81?= =?UTF-8?q?=20=EB=B3=80=EC=88=98=20=EC=A3=BC=EC=9E=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev-cd.yml | 37 ++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/dev-cd.yml diff --git a/.github/workflows/dev-cd.yml b/.github/workflows/dev-cd.yml new file mode 100644 index 00000000..66ea56fb --- /dev/null +++ b/.github/workflows/dev-cd.yml @@ -0,0 +1,37 @@ +name: gohigher-backend-dev-cd + +on: + push: + branches: + - develop + pull_request: + branches: + - develop + types: [ opened, synchronize ] + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'adopt' + + - name: Checkout source code + uses: actions/checkout@v4 + + - name: Set Encryption Key + uses: microsoft/variable-substitution@v1 + with: + files: ./bootstrap/src/main/resources/application.yml + env: + - encryption-key: ${{ secrets.ENCRYPTION_KEY }} + + - name: Change gradlew permission + run: sudo chmod 755 gradlew + + - name: Build with Gradle without test + run: ./gradlew clean build -x test From 7ae67e8020aa8c59a7484759cb6661283065c74b Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Sun, 7 Apr 2024 15:29:40 +0900 Subject: [PATCH 02/18] =?UTF-8?q?fix:=20=EB=B3=80=EC=88=98=20=EC=A3=BC?= =?UTF-8?q?=EC=9E=85=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dev-cd.yml b/.github/workflows/dev-cd.yml index 66ea56fb..e37caa48 100644 --- a/.github/workflows/dev-cd.yml +++ b/.github/workflows/dev-cd.yml @@ -28,7 +28,7 @@ jobs: with: files: ./bootstrap/src/main/resources/application.yml env: - - encryption-key: ${{ secrets.ENCRYPTION_KEY }} + encryption-key: ${{ secrets.ENCRYPTION_KEY }} - name: Change gradlew permission run: sudo chmod 755 gradlew From 53d24f6320b8b2347227822aff954c9755365e66 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Sun, 7 Apr 2024 15:38:23 +0900 Subject: [PATCH 03/18] =?UTF-8?q?fix:=20=EB=B3=80=EC=88=98=20=EC=A3=BC?= =?UTF-8?q?=EC=9E=85=20=EB=A1=9C=EC=A7=81=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev-cd.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dev-cd.yml b/.github/workflows/dev-cd.yml index e37caa48..f3286e0e 100644 --- a/.github/workflows/dev-cd.yml +++ b/.github/workflows/dev-cd.yml @@ -24,11 +24,11 @@ jobs: uses: actions/checkout@v4 - name: Set Encryption Key - uses: microsoft/variable-substitution@v1 - with: - files: ./bootstrap/src/main/resources/application.yml + run: | + echo "encryption-key: $ENCRYPTION_KEY" >> $RESOURCE_PATH env: - encryption-key: ${{ secrets.ENCRYPTION_KEY }} + ENCRYPTION_KEY: ${{ secrets.ENCRYPTION_KEY }} + RESOURCE_PATH: './bootstrap/src/main/resources/application.yml' - name: Change gradlew permission run: sudo chmod 755 gradlew From def532ea9f45859af8c1ca7b18c9f6dbae26d4d1 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 16:55:07 +0900 Subject: [PATCH 04/18] =?UTF-8?q?cd:=20zip=EC=9C=BC=EB=A1=9C=20=EC=95=95?= =?UTF-8?q?=EC=B6=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev-cd.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/dev-cd.yml b/.github/workflows/dev-cd.yml index f3286e0e..e650d47c 100644 --- a/.github/workflows/dev-cd.yml +++ b/.github/workflows/dev-cd.yml @@ -35,3 +35,7 @@ jobs: - name: Build with Gradle without test run: ./gradlew clean build -x test + + - name: Make Zip File + run: zip -qq -r ./$GITHUB_SHA.zip . + shell: bash From 6c6b4bbcd20832cc6eef412abda07abef041b8af Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:02:16 +0900 Subject: [PATCH 05/18] =?UTF-8?q?cd:=20aws=20s3=EC=97=90=20zip=20=EC=98=AC?= =?UTF-8?q?=EB=A6=AC=EA=B3=A0=20codeDeploy=20=EC=8B=A4=ED=96=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev-cd.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dev-cd.yml b/.github/workflows/dev-cd.yml index e650d47c..d2b5716c 100644 --- a/.github/workflows/dev-cd.yml +++ b/.github/workflows/dev-cd.yml @@ -38,4 +38,21 @@ jobs: - name: Make Zip File run: zip -qq -r ./$GITHUB_SHA.zip . - shell: bash + shell: bash축 + + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }} + aws-secret-access-key: ${{ secrets.AWS_ACCESS_SECRET_KEY }} + aws-region: ap-northeast-2 + + - name: Upload to S3 + run: aws s3 cp --region ap-northeast-2 ./$GITHUB_SHA.zip s3://gohigher-backend-cd-bucket/backend/$GITHUB_SHA.zip + + - name: Code Deploy To EC2 instance + run: aws deploy create-deployment + --application-name gohigher-backend-cd + --deployment-config-name CodeDeployDefault.AllAtOnce + --deployment-group-name gohigher-backend-cd + --s3-location bucket=gohigher-backend-cd-bucket,bundleType=zip,key=backend/$GITHUB_SHA.zip From 4086000c527570fbcff2d0e6927b2145dcf2ad72 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:05:47 +0900 Subject: [PATCH 06/18] =?UTF-8?q?chore:=20code=20deploy=EB=A5=BC=20?= =?UTF-8?q?=EC=9C=84=ED=95=9C=20=ED=8C=8C=EC=9D=BC=20=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- appspec.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 appspec.yml diff --git a/appspec.yml b/appspec.yml new file mode 100644 index 00000000..98263bbe --- /dev/null +++ b/appspec.yml @@ -0,0 +1,15 @@ +version: 0.0 +os: linux + +files: + - source: / + destination: /home/ubuntu/gohigher +permissions: + - object: /home/ubuntu/gohigher/ + owner: ubuntu + group: ubuntu +hooks: + AfterInstall: + - location: scripts/deploy.sh + timeout: 60 + runas: ubuntu From 931c815ea9c9b88fc3a6730d72fe746bdc955031 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:14:06 +0900 Subject: [PATCH 07/18] =?UTF-8?q?chore:=20deploy.sh=20=EB=B9=88=20?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- appspec.yml | 2 ++ scripts/deploy.sh | 0 2 files changed, 2 insertions(+) create mode 100644 scripts/deploy.sh diff --git a/appspec.yml b/appspec.yml index 98263bbe..682abd53 100644 --- a/appspec.yml +++ b/appspec.yml @@ -4,10 +4,12 @@ os: linux files: - source: / destination: /home/ubuntu/gohigher + permissions: - object: /home/ubuntu/gohigher/ owner: ubuntu group: ubuntu + hooks: AfterInstall: - location: scripts/deploy.sh diff --git a/scripts/deploy.sh b/scripts/deploy.sh new file mode 100644 index 00000000..e69de29b From 813afe73befc47da04684a24466448a8fe488c81 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:16:24 +0900 Subject: [PATCH 08/18] =?UTF-8?q?fix:=20=EC=98=A4=ED=83=80=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dev-cd.yml b/.github/workflows/dev-cd.yml index d2b5716c..c9becb0a 100644 --- a/.github/workflows/dev-cd.yml +++ b/.github/workflows/dev-cd.yml @@ -38,7 +38,7 @@ jobs: - name: Make Zip File run: zip -qq -r ./$GITHUB_SHA.zip . - shell: bash축 + shell: bash - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v1 From 57258c9c4bf7f5c8cf6bf27d0d48d46cf27bc7e6 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:33:00 +0900 Subject: [PATCH 09/18] =?UTF-8?q?chore:=20deploy.sh=20=EB=82=B4=EC=9A=A9?= =?UTF-8?q?=20=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/deploy.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index e69de29b..eb2b41c0 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -0,0 +1,28 @@ +DEV_PORT=8080 +TEST_PORT=8081 + +DEV_PROFILE="dev" +TEST_PROFILE="test" + +JAR_FILE="bootstrap-0.0.1-SNAPSHOT.jar"성 +TEST_FOLDER="test" +DEV_LOG_FILE="gohigher.out" +TEST_LOG_FILE="gohigher-test.out" + +cd ~ +cd + +echo "> kill spring port" +fuser -k -n tcp ${DEV_PORT} +fuser -k -n tcp ${TEST_PORT} + +echo "> execute dev jar" +cd bootstrap/build/libs +nohup java -jar --spring.profiles.active=${DEV_PROFILE} ${JAR_FILE} 1>${DEV_LOG_FILE} 2>&1 & + +echo "> execute test jar" +mkdir ${TEST_FOLDER} +mv ${JAR_FILE} /${TEST_FOLDER} +cd test +nohup java -jar --spring.profiles.active=${TEST_PROFILE} --server.port=${TEST_PORT} ${JAR_FILE} 1>${TEST_LOG_FILE} 2>&1 & + From f76fccb3e8e55446ddc4fd578516b41b5d52a255 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:33:14 +0900 Subject: [PATCH 10/18] =?UTF-8?q?chore:=20deploy.sh=20=EB=82=B4=EC=9A=A9?= =?UTF-8?q?=20=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index eb2b41c0..0530ca4f 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -4,7 +4,7 @@ TEST_PORT=8081 DEV_PROFILE="dev" TEST_PROFILE="test" -JAR_FILE="bootstrap-0.0.1-SNAPSHOT.jar"성 +JAR_FILE="bootstrap-0.0.1-SNAPSHOT.jar" TEST_FOLDER="test" DEV_LOG_FILE="gohigher.out" TEST_LOG_FILE="gohigher-test.out" From f102ddf70c4b64dac81b8f418615da04811162f1 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:35:34 +0900 Subject: [PATCH 11/18] =?UTF-8?q?chore:=20deploy.sh=20=EB=82=B4=EC=9A=A9?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/deploy.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 0530ca4f..ce6e12ef 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -4,13 +4,15 @@ TEST_PORT=8081 DEV_PROFILE="dev" TEST_PROFILE="test" +DEPLOY_FOLDER="gohigher" JAR_FILE="bootstrap-0.0.1-SNAPSHOT.jar" + TEST_FOLDER="test" DEV_LOG_FILE="gohigher.out" TEST_LOG_FILE="gohigher-test.out" cd ~ -cd +cd ${DEPLOY_FOLDER} echo "> kill spring port" fuser -k -n tcp ${DEV_PORT} From d496dbac1cda75d34079a9c14f581371cc871bd1 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:39:06 +0900 Subject: [PATCH 12/18] =?UTF-8?q?chore:=20deploy.sh=20=EB=82=B4=EC=9A=A9?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index ce6e12ef..61514354 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -20,11 +20,11 @@ fuser -k -n tcp ${TEST_PORT} echo "> execute dev jar" cd bootstrap/build/libs -nohup java -jar --spring.profiles.active=${DEV_PROFILE} ${JAR_FILE} 1>${DEV_LOG_FILE} 2>&1 & +nohup java -jar -Dspring.profiles.active=${DEV_PROFILE} ${JAR_FILE} 1>${DEV_LOG_FILE} 2>&1 & echo "> execute test jar" mkdir ${TEST_FOLDER} mv ${JAR_FILE} /${TEST_FOLDER} cd test -nohup java -jar --spring.profiles.active=${TEST_PROFILE} --server.port=${TEST_PORT} ${JAR_FILE} 1>${TEST_LOG_FILE} 2>&1 & +nohup java -jar -Dspring.profiles.active=${TEST_PROFILE} -Dserver.port=${TEST_PORT} ${JAR_FILE} 1>${TEST_LOG_FILE} 2>&1 & From 654acd115602d190f9209755d7fbbf00e5485579 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:43:16 +0900 Subject: [PATCH 13/18] =?UTF-8?q?cd:=20build=EA=B0=80=20=EC=95=84=EB=8B=8C?= =?UTF-8?q?=20bootJar=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dev-cd.yml b/.github/workflows/dev-cd.yml index c9becb0a..1550aba4 100644 --- a/.github/workflows/dev-cd.yml +++ b/.github/workflows/dev-cd.yml @@ -34,7 +34,7 @@ jobs: run: sudo chmod 755 gradlew - name: Build with Gradle without test - run: ./gradlew clean build -x test + run: ./gradlew bootJar - name: Make Zip File run: zip -qq -r ./$GITHUB_SHA.zip . From aeb8601e25a51459be778bde9acf6c94368bfa61 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:47:33 +0900 Subject: [PATCH 14/18] =?UTF-8?q?chore:=20=ED=8C=8C=EC=9D=BC=20=EC=9D=B4?= =?UTF-8?q?=EB=8F=99=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 61514354..2bbaae18 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -24,7 +24,7 @@ nohup java -jar -Dspring.profiles.active=${DEV_PROFILE} ${JAR_FILE} 1>${DEV_LOG_ echo "> execute test jar" mkdir ${TEST_FOLDER} -mv ${JAR_FILE} /${TEST_FOLDER} +sudo mv ${JAR_FILE} ${TEST_FOLDER}/ cd test nohup java -jar -Dspring.profiles.active=${TEST_PROFILE} -Dserver.port=${TEST_PORT} ${JAR_FILE} 1>${TEST_LOG_FILE} 2>&1 & From 01100d44f53f5b16a00cd5f8477105da24e01c8e Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:50:45 +0900 Subject: [PATCH 15/18] =?UTF-8?q?chore:=20=ED=8C=8C=EC=9D=BC=20=EC=9D=B4?= =?UTF-8?q?=EB=8F=99=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 2bbaae18..4d1a2948 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -25,6 +25,6 @@ nohup java -jar -Dspring.profiles.active=${DEV_PROFILE} ${JAR_FILE} 1>${DEV_LOG_ echo "> execute test jar" mkdir ${TEST_FOLDER} sudo mv ${JAR_FILE} ${TEST_FOLDER}/ -cd test +cd ${TEST_FOLDER} nohup java -jar -Dspring.profiles.active=${TEST_PROFILE} -Dserver.port=${TEST_PORT} ${JAR_FILE} 1>${TEST_LOG_FILE} 2>&1 & From f3dfcb602737d228873533193a4b4363fb57c1e1 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:54:47 +0900 Subject: [PATCH 16/18] =?UTF-8?q?chore:=20=ED=8C=8C=EC=9D=BC=20=EC=9D=B4?= =?UTF-8?q?=EB=8F=99=EC=A0=84=20=EC=8B=9C=EA=B0=84=20=EC=B0=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev-cd.yml | 2 +- scripts/deploy.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dev-cd.yml b/.github/workflows/dev-cd.yml index 1550aba4..85fb67c1 100644 --- a/.github/workflows/dev-cd.yml +++ b/.github/workflows/dev-cd.yml @@ -33,7 +33,7 @@ jobs: - name: Change gradlew permission run: sudo chmod 755 gradlew - - name: Build with Gradle without test + - name: Make Jar File run: ./gradlew bootJar - name: Make Zip File diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 4d1a2948..7075b059 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -21,6 +21,7 @@ fuser -k -n tcp ${TEST_PORT} echo "> execute dev jar" cd bootstrap/build/libs nohup java -jar -Dspring.profiles.active=${DEV_PROFILE} ${JAR_FILE} 1>${DEV_LOG_FILE} 2>&1 & +sleep 3 echo "> execute test jar" mkdir ${TEST_FOLDER} From 9466b4992c56a88e2f75600615b6b69e2b87dda3 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:58:47 +0900 Subject: [PATCH 17/18] =?UTF-8?q?cd:=20develop=20=EB=B8=8C=EB=9E=9C?= =?UTF-8?q?=EC=B9=98=20push=20=EC=83=81=ED=99=A9=EC=97=90=EC=84=9C?= =?UTF-8?q?=EB=A7=8C=20=EC=8B=A4=ED=96=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev-cd.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/dev-cd.yml b/.github/workflows/dev-cd.yml index 85fb67c1..f9cab856 100644 --- a/.github/workflows/dev-cd.yml +++ b/.github/workflows/dev-cd.yml @@ -4,10 +4,6 @@ on: push: branches: - develop - pull_request: - branches: - - develop - types: [ opened, synchronize ] jobs: deploy: From f89ce285f5ce41f6214e684fc92ef3435784b012 Mon Sep 17 00:00:00 2001 From: shindong96 <2006peter@naver.com> Date: Mon, 8 Apr 2024 17:59:17 +0900 Subject: [PATCH 18/18] =?UTF-8?q?style:=20=EC=9D=B8=EB=9D=BC=EC=9D=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/deploy.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 7075b059..01011ff4 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -28,4 +28,3 @@ mkdir ${TEST_FOLDER} sudo mv ${JAR_FILE} ${TEST_FOLDER}/ cd ${TEST_FOLDER} nohup java -jar -Dspring.profiles.active=${TEST_PROFILE} -Dserver.port=${TEST_PORT} ${JAR_FILE} 1>${TEST_LOG_FILE} 2>&1 & -