From 42cd85f8e5d0c7bd7a4cb2189fa074f801b43c44 Mon Sep 17 00:00:00 2001 From: teddy Date: Wed, 8 Apr 2026 17:13:45 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8C=A8=ED=82=A4=EC=A7=80=20=EA=B5=AC?= =?UTF-8?q?=EC=A1=B0=20=EC=88=98=EC=A0=95=20=EB=B0=8F=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api-app/README.md | 34 ++++++++++++++++++++-------------- 1 file changed, 20 insertions(+), 14 deletions(-) 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