-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from Re-4aliens/develop
2024-02-12 [Release Note]
- Loading branch information
Showing
151 changed files
with
5,477 additions
and
460 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: test | ||
|
||
on: | ||
push: | ||
branches: [ develop ] | ||
pull_request: | ||
branches: [ develop ] | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: JDK 17 설치 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: secret 설정 파일(yml) 추가 | ||
run: | | ||
cd ./src/main/resources | ||
touch ./application-secret.yml | ||
echo "${{ secrets.APPLICATION_SECRET }}" > ./application-secret.yml | ||
ls -a . | ||
- name: firebase_service_key.json 구성 | ||
run: | | ||
cd ./src/main/resources | ||
touch ./firebase_service_key.json | ||
echo "${{ secrets.FCM_KEY }}" > ./firebase_service_key.json | ||
ls -a . | ||
- name: firebase_service_key.json 파일 생성 | ||
id: create-json | ||
uses: jsdaniell/[email protected] | ||
with: | ||
name: "firebase_service_key.json" | ||
json: ${{ secrets.FCM_KEY }} | ||
|
||
|
||
- name: JSON 파일 이동 및 로그 확인 | ||
run: | | ||
mv ./firebase_service_key.json ./src/main/resources/firebase_service_key.json | ||
cd ./src/main/resources | ||
ls -a . | ||
- name: Gradle 권한 허용 | ||
run: chmod +x gradlew | ||
- name: PR 및 PUSH 전, 테스트 확인 | ||
run: ./gradlew test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
= Spring REST Docs | ||
:toc: left | ||
:toclevels: 2 | ||
:sectlinks: | ||
|
||
[[resources-post]] | ||
== 회원 | ||
|
||
[[resources-post-create]] | ||
=== 회원 가입 | ||
|
||
==== HTTP request | ||
include::{snippets}/member-signup/http-request.adoc[] | ||
|
||
|
||
==== HTTP response | ||
include::{snippets}/member-signup/http-response.adoc[] | ||
|
||
==== response-body 설명 | ||
include::{snippets}/member-signup/response-fields.adoc[] | ||
|
||
|
||
|
||
=== 프로필 이미지 변경 | ||
|
||
==== HTTP request | ||
include::{snippets}/member-change-profile-image/http-request.adoc[] | ||
|
||
==== HTTP response | ||
include::{snippets}/member-change-profile-image/http-response.adoc[] | ||
|
||
==== response-body 설명 | ||
include::{snippets}/member-change-profile-image/response-fields.adoc[] | ||
|
||
|
||
=== 임시 비밀번호 발급 | ||
|
||
==== HTTP request | ||
include::{snippets}/member-temporary-password/http-request.adoc[] | ||
|
||
==== request-body 설명 | ||
include::{snippets}/member-temporary-password/request-fields.adoc[] | ||
|
||
==== HTTP response | ||
include::{snippets}/member-temporary-password/http-response.adoc[] | ||
|
||
==== response-body 설명 | ||
include::{snippets}/email-verification-send/response-fields.adoc[] | ||
|
||
|
||
=== 비밀번호 변경 | ||
|
||
==== HTTP request | ||
|
||
include::{snippets}/member-change-password/http-request.adoc[] | ||
|
||
==== request-body 설명 | ||
include::{snippets}/member-change-password/request-fields.adoc[] | ||
|
||
==== HTTP response | ||
|
||
include::{snippets}/member-change-password/http-response.adoc[] | ||
|
||
==== response-body 설명 | ||
include::{snippets}/member-change-password/response-fields.adoc[] | ||
|
||
|
||
|
||
|
||
=== 회원 탈퇴 | ||
|
||
==== HTTP request | ||
|
||
include::{snippets}/member-withdraw/http-request.adoc[] | ||
|
||
|
||
==== HTTP response | ||
|
||
include::{snippets}/member-withdraw/http-response.adoc[] | ||
|
||
==== response-body 설명 | ||
include::{snippets}/member-withdraw/response-fields.adoc[] | ||
|
||
|
||
|
||
|
||
|
||
=== 회원 상태 | ||
|
||
==== HTTP request | ||
|
||
include::{snippets}/member-get-status/http-request.adoc[] | ||
|
||
|
||
==== HTTP response | ||
|
||
include::{snippets}/member-get-status/http-response.adoc[] | ||
|
||
==== response-body 설명 | ||
include::{snippets}/member-get-status/response-fields.adoc[] | ||
|
||
|
||
|
||
|
||
=== 개인 정보 조회 | ||
|
||
==== HTTP request | ||
|
||
include::{snippets}/member-get-member-page/http-request.adoc[] | ||
|
||
|
||
==== HTTP response | ||
|
||
include::{snippets}/member-get-member-page/http-response.adoc[] | ||
|
||
==== response-body 설명 | ||
include::{snippets}/member-get-member-page/response-fields.adoc[] | ||
|
||
|
||
|
||
|
||
=== 자기소개 변경 | ||
|
||
==== HTTP request | ||
|
||
include::{snippets}/member-change-about-me/http-request.adoc[] | ||
|
||
==== request-body 설명 | ||
include::{snippets}/member-change-about-me/request-fields.adoc[] | ||
|
||
|
||
|
||
==== HTTP response | ||
|
||
include::{snippets}/member-change-about-me/http-response.adoc[] | ||
|
||
==== response-body 설명 | ||
include::{snippets}/member-change-about-me/response-fields.adoc[] | ||
|
||
|
||
|
||
=== MBTI 변경 | ||
|
||
==== HTTP request | ||
|
||
include::{snippets}/member-change-mbti/http-request.adoc[] | ||
|
||
==== request-body 설명 | ||
include::{snippets}/member-change-mbti/request-fields.adoc[] | ||
|
||
|
||
|
||
==== HTTP response | ||
|
||
include::{snippets}/member-change-mbti/http-response.adoc[] | ||
|
||
==== response-body 설명 | ||
include::{snippets}/member-change-mbti/response-fields.adoc[] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.