.gitkeep 추가
This commit is contained in:
@@ -152,7 +152,7 @@ api-app # 메인 실행 모듈
|
|||||||
│ │ │ ├── DabeeoDetectionApiApplication.java
|
│ │ │ ├── DabeeoDetectionApiApplication.java
|
||||||
│ │ │
|
│ │ │
|
||||||
│ │ │ ├── config # 설정 파일
|
│ │ │ ├── config # 설정 파일
|
||||||
│ │ │
|
│ │ │ ├── core # core service (Repository 비즈니스 서비스)
|
||||||
│ │ │ ├── domain # 도메인
|
│ │ │ ├── domain # 도메인
|
||||||
│ │ │ │ ├── imagery # 영상 데이터 관리
|
│ │ │ │ ├── imagery # 영상 데이터 관리
|
||||||
│ │ │ │ ├── labeling # 라벨링 툴
|
│ │ │ │ ├── labeling # 라벨링 툴
|
||||||
@@ -174,6 +174,7 @@ api-app # 메인 실행 모듈
|
|||||||
│ └── build.gradle
|
│ └── build.gradle
|
||||||
│
|
│
|
||||||
├── infrastructure-db-postgres # Postgres 전용 설정/확장
|
├── infrastructure-db-postgres # Postgres 전용 설정/확장
|
||||||
|
│ ├── repository # Repository impl 구현
|
||||||
│ └── build.gradle
|
│ └── build.gradle
|
||||||
│
|
│
|
||||||
├── build.gradle
|
├── build.gradle
|
||||||
|
|||||||
@@ -5,6 +5,9 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
|
runtimeOnly 'com.h2database:h2'
|
||||||
|
|
||||||
// postgres
|
// postgres
|
||||||
implementation project(':infrastructure-db-postgres')
|
implementation project(':infrastructure-db-postgres')
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,15 @@
|
|||||||
spring:
|
spring:
|
||||||
datasource:
|
datasource:
|
||||||
url: jdbc:postgresql://localhost:5432/dabeeo_detection_dev
|
url: jdbc:h2:mem:testdb
|
||||||
username: dabeeo_detection
|
username: sa
|
||||||
password: 1234
|
password:
|
||||||
|
driver-class-name: org.h2.Driver
|
||||||
|
|
||||||
|
jpa:
|
||||||
|
database-platform: org.hibernate.dialect.H2Dialect
|
||||||
|
hibernate:
|
||||||
|
ddl-auto: create-drop
|
||||||
|
|
||||||
|
h2:
|
||||||
|
console:
|
||||||
|
enabled: true
|
||||||
@@ -1,5 +1,15 @@
|
|||||||
spring:
|
spring:
|
||||||
datasource:
|
datasource:
|
||||||
url: jdbc:postgresql://localhost:5432/dabeeo_detection_dev
|
url: jdbc:h2:mem:testdb
|
||||||
username: dabeeo_detection
|
username: sa
|
||||||
password: 1234
|
password:
|
||||||
|
driver-class-name: org.h2.Driver
|
||||||
|
|
||||||
|
jpa:
|
||||||
|
database-platform: org.hibernate.dialect.H2Dialect
|
||||||
|
hibernate:
|
||||||
|
ddl-auto: create-drop
|
||||||
|
|
||||||
|
h2:
|
||||||
|
console:
|
||||||
|
enabled: true
|
||||||
@@ -9,3 +9,12 @@ spring:
|
|||||||
properties:
|
properties:
|
||||||
hibernate:
|
hibernate:
|
||||||
format_sql: true
|
format_sql: true
|
||||||
|
|
||||||
|
management:
|
||||||
|
endpoints:
|
||||||
|
web:
|
||||||
|
base-path: /monitor
|
||||||
|
endpoint:
|
||||||
|
health:
|
||||||
|
probes:
|
||||||
|
enabled: true
|
||||||
Reference in New Issue
Block a user