-
Notifications
You must be signed in to change notification settings - Fork 0
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 #154 from makevook/issue/151,152,153
refactor,chore,docs: 템플릿 용어집 도메인 분리, 미사용 의존성 제거, 문서 최신화
- Loading branch information
Showing
33 changed files
with
111 additions
and
124 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,28 @@ | ||
# vook-server | ||
# Vook Server | ||
|
||
- [Introduction](docs/introduction/240622/README.md) | ||
- [DB Schema](docs/schema/README.md) | ||
<br /> | ||
|
||
<p align="center"> | ||
<a href="https://vook.app"> | ||
<img src="docs/introduction/240622/assets/logo.svg" alt="Vook Logo" width="170"> | ||
</a> | ||
</p> | ||
|
||
<br /> | ||
|
||
<p align="center"><b>드래그앤드롭</b>으로 용어의 의미를 가장 쉽고 빠르게 찾는 방법</p> | ||
|
||
<p align="center"> | ||
<img | ||
src="docs/introduction/240622/assets/drag-and-drop.png" | ||
alt="Vook Chrome Extension" | ||
width="50%" | ||
/> | ||
</p> | ||
|
||
<p align="center"> | ||
<a href="docs/diagram"><b>Diagram</b></a> • | ||
<a href="docs/schema"><b>Schema</b></a> | ||
</p> | ||
|
||
<br /> |
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
2 changes: 1 addition & 1 deletion
2
.../api/domain/vocabulary/model/Synonym.java → ...rver/api/domain/common/model/Synonym.java
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
6 changes: 3 additions & 3 deletions
6
...bulary/logic/TemplateVocabularyLogic.java → ...bulary/logic/TemplateVocabularyLogic.java
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
8 changes: 4 additions & 4 deletions
8
.../dto/TemplateVocabularyCreateCommand.java → .../dto/TemplateVocabularyCreateCommand.java
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
3 changes: 2 additions & 1 deletion
3
...domain/vocabulary/model/TemplateTerm.java → ...mplate_vocabulary/model/TemplateTerm.java
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
2 changes: 1 addition & 1 deletion
2
...abulary/model/TemplateTermRepository.java → ...abulary/model/TemplateTermRepository.java
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
2 changes: 1 addition & 1 deletion
2
.../vocabulary/model/TemplateVocabulary.java → ..._vocabulary/model/TemplateVocabulary.java
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
2 changes: 1 addition & 1 deletion
2
...y/model/TemplateVocabularyRepository.java → ...y/model/TemplateVocabularyRepository.java
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
2 changes: 1 addition & 1 deletion
2
...abulary/model/TemplateVocabularyType.java → ...abulary/model/TemplateVocabularyType.java
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
10 changes: 10 additions & 0 deletions
10
api/src/main/java/vook/server/api/domain/template_vocabulary/package-info.java
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,10 @@ | ||
@ApplicationModule( | ||
type = ApplicationModule.Type.OPEN, | ||
displayName = "Template Vocabulary Domain", | ||
allowedDependencies = { | ||
"vook.server.api.domain.common" | ||
} | ||
) | ||
package vook.server.api.domain.template_vocabulary; | ||
|
||
import org.springframework.modulith.ApplicationModule; |
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
6 changes: 3 additions & 3 deletions
6
api/src/main/java/vook/server/api/web/user/usecase/OnboardingUserUseCase.java
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
6 changes: 3 additions & 3 deletions
6
...ry/logic/TemplateVocabularyLogicTest.java → ...ry/logic/TemplateVocabularyLogicTest.java
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
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,23 @@ | ||
# Diagram | ||
|
||
> Generated by [Spring Modulith](https://spring.io/projects/spring-modulith) | ||
## Overview | ||
|
||
![Overview](components.png) | ||
|
||
## User Web | ||
|
||
![User Web](module-vook.server.api.web.user.png) | ||
|
||
## Term Web | ||
|
||
![Term Web](module-vook.server.api.web.term.png) | ||
|
||
## Vocabulary Web | ||
|
||
![Vocabulary Web](module-vook.server.api.web.vocabulary.png) | ||
|
||
## Demo Web | ||
|
||
![Demo Web](module-vook.server.api.web.demo.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,7 @@ erDiagram | |
} | ||
"template_vocabulary" { | ||
bigint_20_ id PK | ||
varchar_20_ name | ||
varchar_20_ type | ||
} | ||
``` | ||
|
||
|
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.