Skip to content

Commit

Permalink
[DEL] 인증 관련 소스 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
yummygyudon committed Jan 14, 2025
1 parent 00b4814 commit 683653a
Show file tree
Hide file tree
Showing 54 changed files with 1 addition and 2,734 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ jobs:
- name: 📝 Copy Files from S3
env:
REGION: ${{ secrets.AWS_REGION }}
APPLE_KEY_NAME: ${{ secrets.APPLE_KEY_NAME }}
S3_BUCKET: ${{ secrets.AWS_BUCKET_NAME }}
run: |
aws s3 cp --region $REGION \
Expand All @@ -67,8 +66,6 @@ jobs:
aws s3 cp --region $REGION \
s3://$S3_BUCKET/dev/dev.env ./application.env
aws s3 cp --region $REGION \
s3://$S3_BUCKET/dev/static/$APPLE_KEY ./$APPLE_KEY_NAME
- name: 🔄 Transfer Files to Server
uses: appleboy/scp-action@master
Expand All @@ -77,7 +74,7 @@ jobs:
username: ubuntu
key: ${{ secrets.PEM_KEY_DEV }}
port: 22
source: "deploy.sh,switch.sh,valid.sh,application.env,${{ secrets.APPLE_KEY_NAME }}"
source: "deploy.sh,switch.sh,valid.sh,application.env"
target: /home/ubuntu/deploy-temp/op

- name: 🚀SSH command deploy
Expand All @@ -96,13 +93,11 @@ jobs:
sudo mv /home/ubuntu/deploy-temp/op/switch.sh /home/ubuntu/script/op/switch.sh
sudo mv /home/ubuntu/deploy-temp/op/valid.sh /home/ubuntu/script/op/valid.sh
sudo mv /home/ubuntu/deploy-temp/op/application.env /home/ubuntu/env/op/application.env
sudo mv /home/ubuntu/deploy-temp/op/${{ secrets.APPLE_KEY_NAME }} /home/ubuntu/property/op/key/${{ secrets.APPLE_KEY_NAME }}
sudo chmod +x /home/ubuntu/script/op/deploy.sh
sudo chmod +x /home/ubuntu/script/op/switch.sh
sudo chmod +x /home/ubuntu/script/op/valid.sh
sudo chmod +r /home/ubuntu/env/op/application.env
sudo chmod +r /home/ubuntu/property/op/key/${{ secrets.APPLE_KEY }}
/home/ubuntu/script/op/deploy.sh
/home/ubuntu/script/op/switch.sh
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,6 @@ public ResponseEntity<BaseResponse<?>> attendanceException(AttendanceException e
return ApiResponseUtil.failure(ex.getFailureCode());
}

@ExceptionHandler(AuthException.class)
public ResponseEntity<BaseResponse<?>> authException(AuthException ex) {
log.error(ex.getMessage());
return ApiResponseUtil.failure(ex.getFailureCode());
}

@ExceptionHandler(PermissionException.class)
public ResponseEntity<BaseResponse<?>> permissionException(PermissionException ex) {
log.error(ex.getMessage());
Expand Down
Loading

0 comments on commit 683653a

Please sign in to comment.