-
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.
* refactor: github action 정리 * refactor: 설정 코드 분리 및 패키지 정리 * test: 아키텍처 테스트 추가 * feat: dokka 문서화 추가 * refactor: email 모듈에서 EmailTemplateProcessor를 통해 html을 만들도록 수정 * refactor: email 모듈에서 mail 관련 의존성 api에서 implementation으로 수정 * refactor: WebMvcTest로 ControllerTest 수행되도록 수정 * refactor: testContainer 의존성 삭제 * refactor: test 의존성 분리 * feat: test-fixtures plugin 추가 * refactor: web testFixtures 분리 적용 * fix: 잘못 사용된 예외 수정 * refactor: api test 네이밍 통일 * refactor: Description#authHeader 적용 * refactor: FieldDescription을 활용해 간단히 수정 * refactor: FieldDescription에 optional 반영 * refactor: openapi3 swagger 만드는 task 전체가 공유할 수 있도록 수정 * refactor: 각 모듈에서 생성되는 swagger 조회할 수 있도록 수정 * refactor: 라이브러리 코드 설정 통일 * feat: static 파일 gitignore에 추가 * refactor: repo, flyway 정리 * chore: 린트 정리 * test: spec 테스트 삭제 * refactor: 의존성 정리 및 추가 * chore: 사소한 수정 * fix: kapt 때문에 빌드 되지 않는 문제 해결 * fix: 테스트 수행되지 않는 문제 해결
- Loading branch information
1 parent
01bbabd
commit 31d6e94
Showing
522 changed files
with
3,400 additions
and
6,094 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,47 @@ | ||
name: Build and Publish Dokka Documentation | ||
|
||
on: | ||
pull_request: | ||
branches: [ "main", "dev" ] | ||
workflow_dispatch: | ||
|
||
permissions: write-all | ||
|
||
jobs: | ||
dokka: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# 1. Checkout the code | ||
- uses: actions/checkout@v4 | ||
|
||
# 2. Set up JDK | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
# 3. Run dokkaHtmlMultiModule | ||
- name: Generate Dokka Documentation | ||
run: ./gradlew dokkaHtmlMultiModule | ||
|
||
# 4. Checkout gh-pages branch to publish documentation | ||
- name: Checkout gh-pages | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: gh-pages # Use the `gh-pages` branch | ||
path: gh-pages # Specify the path where `gh-pages` branch will be checked out | ||
|
||
# 5. Copy generated documentation to gh-pages directory | ||
- name: Copy Dokka Documentation | ||
run: | | ||
rm -rf gh-pages/* # Clear existing files | ||
cp -R build/dokka/htmlMultiModule/* gh-pages/ # Copy the newly generated documentation | ||
# 6. Publish documentation to GitHub Pages | ||
- name: Publish Documentation | ||
uses: peaceiris/actions-gh-pages@v4 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_branch: gh-pages | ||
publish_dir: gh-pages |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -105,3 +105,6 @@ storage/**/*.sql | |
|
||
# DB explain result files | ||
**/resources/explain/ | ||
|
||
# static | ||
**/resources/static/ |
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
api-repo/src/main/kotlin/com/few/api/repo/config/ApiRepoConfig.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.