Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.0.0 #30

Merged
merged 4 commits into from
Dec 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
.git
LICENSE
*.md
*.log
*.log

# client 테스트 파일
test/kakao-login
3 changes: 2 additions & 1 deletion .github/workflows/aks-prod-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: create namespace
run: |
kubectl create namespace ${{ env.NAMESPACE }} --dry-run -o json | kubectl apply -f -
kubectl create namespace ${{ env.NAMESPACE }} --dry-run=client -o json | kubectl apply -f -

- name: aks apply object
uses: Azure/k8s-deploy@v1.4
Expand All @@ -64,3 +64,4 @@ jobs:
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_MESSAGE: ${{ github.repository }}가 ${{ env.NAMESPACE }} 환경에 배포되었습니다 🚀
3 changes: 2 additions & 1 deletion .github/workflows/aks-qa-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: create namespace
run: |
kubectl create namespace ${{ env.NAMESPACE }} --dry-run -o json | kubectl apply -f -
kubectl create namespace ${{ env.NAMESPACE }} --dry-run=client -o json | kubectl apply -f -

- name: aks apply object
uses: Azure/k8s-deploy@v1.4
Expand All @@ -61,3 +61,4 @@ jobs:
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_MESSAGE: ${{ github.repository }}가 ${{ env.NAMESPACE }} 환경에 배포되었습니다 🚀
3 changes: 2 additions & 1 deletion .github/workflows/aks-test-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- name: create namespace
run: |
kubectl create namespace ${{ env.NAMESPACE }} --dry-run -o json | kubectl apply -f -
kubectl create namespace ${{ env.NAMESPACE }} --dry-run=client -o json | kubectl apply -f -

- name: aks apply object
uses: Azure/k8s-deploy@v1.4
Expand All @@ -63,3 +63,4 @@ jobs:
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_MESSAGE: ${{ github.repository }}가 ${{ env.NAMESPACE }} 환경에 배포되었습니다 🚀
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ OAuth 인증서버를 구축합니다.
1. JWT Token을 사용합니다.
1. 해당 앱을 사용하기 위해서는 kakao 개발자 센터에서 애플리케이션을 발급받아야 합니다. 발급 후 설정방법은 노션을 참고하도록 합니다.
1. API Spec는 `{url}/swagger/index.html` 으로 요청하여`swagger` 를 참고해주세요.
1. kakao login의 경우 콜백 때문에 테스트를 위해서는 웹앱이 필요합니다. [test/kakao-login](./test/kakao-login) 를 참고해주세요.

# Stack

Expand All @@ -21,6 +22,7 @@ OAuth 인증서버를 구축합니다.
# 빠른 시작

1. vscode에서 `F5` 혹은 `go run main.go` 으로 시작합니다.
1. kakao developers에서 kakao application 정보 및 환경변수를 입력해주세요.

# 의존성

Expand Down
Loading