diff --git a/api-app/README.md b/api-app/README.md index 9d35b22..ddc90f6 100644 --- a/api-app/README.md +++ b/api-app/README.md @@ -147,25 +147,31 @@ build/libs/ROOT.jar ``` api-app # 메인 실행 모듈 ├── app -│ └── src/main/java/com/cd/detection -│ ├── DabeeoDetectionApiApplication.java +│ └── src/main +│ ├── java/com/cd/detection +│ │ ├── DabeeoDetectionApiApplication.java │ │ -│ ├── config # 설정 파일 +│ │ ├── config # 설정 파일 │ │ -│ ├── domain # 도메인 -│ │ ├── imagery # 영상 데이터 관리 -│ │ ├── labeling # 라벨링 툴 -│ │ ├── label # 라벨링 관리 -│ │ ├── model # 모델관리 -│ │ ├── inference # 추론관리 -│ │ ├── system # 시스템관리 -│ │ └── log # 로그관리 +│ │ ├── domain # 도메인 +│ │ │ ├── imagery # 영상 데이터 관리 +│ │ │ ├── labeling # 라벨링 툴 +│ │ │ ├── label # 라벨링 관리 +│ │ │ ├── model # 모델관리 +│ │ │ ├── inference # 추론관리 +│ │ │ ├── system # 시스템관리 +│ │ │ └── log # 로그관리 │ │ -│ ├── entity # 공용 JPA 엔티티 (DB 공통 사용) +│ │ ├── entity # 공용 JPA 엔티티 (DB 공통 사용) +│ │ │ +│ │ └── repository # 공용 Repository (DB 공통 인터페이스/구현) │ │ -│ └── repository # 공용 Repository (DB 공통 인터페이스/구현) +│ └── resources # 설정 및 리소스 파일 +│ ├── application.yml +│ ├── application-dev.yml +│ └── application-prod.yml │ -├── infrastructure-db-postgres # Postgres 전용 설정/확장 +├── infrastructure-db-postgres # Postgres 전용 설정/확장 │ └── build.gradle │ ├── build.gradle