Skip to content

Commit

Permalink
Merge pull request #126 from Re-4aliens/chore/#124_change-pipeline
Browse files Browse the repository at this point in the history
Chore/#124 change pipeline
  • Loading branch information
suhyun0918 authored Jun 30, 2024
2 parents 868ca70 + 9a71e45 commit 5808c83
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/friendship-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
# 도커 작업
script: |
sudo docker pull ${{ secrets.DOCKER_USERNAME }}/${{ env.APP_NAME }}:latest
sudo docker stop $(docker ps -a -q)
sudo docker run -d --log-driver=syslog -p 443:8080 -e TZ=Asia/Seoul ${{ secrets.DOCKER_USERNAME }}/${{ env.APP_NAME }}
sudo docker rm $(docker ps --filter 'status=exited' -a -q)
sudo docker image prune -a -f
sudo docker stop $(docker ps --filter "ancestor=${{ secrets.DOCKER_USERNAME }}/${{ env.APP_NAME }}" -q)
sudo docker run -d --log-driver=syslog -p 443:8080 -e TZ=Asia/Seoul ${{ secrets.DOCKER_USERNAME }}/${{ env.APP_NAME }}:latest
sudo docker rm $(docker ps --filter "status=exited" --filter "ancestor=${{ secrets.DOCKER_USERNAME }}/${{ env.APP_NAME }}" -q)
sudo docker image prune -f
26 changes: 14 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ Notification - Firebase Cloud Messaging (FCM)
## 기술 문서
- [FriendShip의 채팅은 어떻게 이루어지나요?](https://hulking-edge-c2d.notion.site/FriendShip-cffe85a2383f42b9865468462288056a?pvs=4)
- [매칭 로직 개선하기 : 79.2%의 성능 향상](https://www.notion.so/80-b3bba869f074437b9c400d687a9fc369?pvs=4)
- [테스트 시 DB 초기화 작업 자동화](https://hulking-edge-c2d.notion.site/DB-2cc0f7fdaba2472fb904a66d938769d6?pvs=4)
- [SpringMVC 확장을 통한 인증/ 인가 구현](https://hulking-edge-c2d.notion.site/SpringMVC-fb113c0f2aea45a7b7082229c6f80d97?pvs=4)
- [웹소켓 채팅 전송시 권한 확인 방법](https://hulking-edge-c2d.notion.site/cb879fe56f0d4a76883bc294cad61bdc?pvs=4)
- [채팅 메시지 인덱싱 - ESR rule](https://hulking-edge-c2d.notion.site/ESR-rule-ff48f2dbba2447f89ba6e838841c65de?pvs=4)
- [CD/CI : Github Actions를 이용한 배포 자동화](https://hulking-edge-c2d.notion.site/CD-CI-Github-Actions-62f329c0877449c8a554fe42eb62a3a8?pvs=4)
Expand Down Expand Up @@ -88,18 +90,18 @@ Notification - Firebase Cloud Messaging (FCM)
---

## API 문서 (Spring REST Docs)
- [이메일 API](http://ec2-52-79-233-200.ap-northeast-2.compute.amazonaws.com:8080/docs/email.html)
- [회원 API](http://ec2-52-79-233-200.ap-northeast-2.compute.amazonaws.com:8080/docs/member.html)
- [로그인 API](http://ec2-52-79-233-200.ap-northeast-2.compute.amazonaws.com:8080/docs/authentication.html)
- [차단 API](http://ec2-52-79-233-200.ap-northeast-2.compute.amazonaws.com:8080/docs/block.html)
- [일반 게시판 API](http://ec2-52-79-233-200.ap-northeast-2.compute.amazonaws.com:8080/docs/board.html)
- [장터 게시판 API](http://ec2-52-79-233-200.ap-northeast-2.compute.amazonaws.com:8080/docs/market-boar.html)
- [댓글 API](http://ec2-52-79-233-200.ap-northeast-2.compute.amazonaws.com:8080/docs/comment.html)
- [좋아요 API](http://ec2-52-79-233-200.ap-northeast-2.compute.amazonaws.com:8080/docs/great.html)
- [채팅 API](http://ec2-52-79-233-200.ap-northeast-2.compute.amazonaws.com:8080/docs/chat.html)
- [매칭 API](http://ec2-52-79-233-200.ap-northeast-2.compute.amazonaws.com:8080/docs/matching.html)
- [알림 API](http://ec2-52-79-233-200.ap-northeast-2.compute.amazonaws.com:8080/docs/notification.html)
- [신고 API](http://ec2-52-79-233-200.ap-northeast-2.compute.amazonaws.com:8080/docs/report.html)
- [이메일 API](https://friendship-aliens.com/docs/email.html)
- [회원 API](https://friendship-aliens.com/docs/member.html)
- [로그인 API](https://friendship-aliens.com/docs/authentication.html)
- [차단 API](https://friendship-aliens.com/docs/block.html)
- [일반 게시판 API](https://friendship-aliens.com/docs/board.html)
- [장터 게시판 API](https://friendship-aliens.com/docs/market-boar.html)
- [댓글 API](https://friendship-aliens.com/docs/comment.html)
- [좋아요 API](https://friendship-aliens.com/docs/great.html)
- [채팅 API](https://friendship-aliens.com/docs/chat.html)
- [매칭 API](https://friendship-aliens.com/docs/matching.html)
- [알림 API](https://friendship-aliens.com/docs/notification.html)
- [신고 API](https://friendship-aliens.com/docs/report.html)


---
Expand Down

0 comments on commit 5808c83

Please sign in to comment.