- Backend: @Table(schema="kcg") 하드코딩 제거 → application.yml default_schema 활용
- Backend: application.yml/prod.yml 환경변수 ${} 패턴 전환
- Backend: WebConfig CORS 5174 포트 추가
- Frontend: tsconfig resolveJsonModule 추가
- Prediction: scheduler/snpdb/vessel_store import 위치 + 주석 codex 동기화
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
217 B
YAML
12 lines
217 B
YAML
spring:
|
|
profiles:
|
|
active: ${SPRING_PROFILES_ACTIVE:local}
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: none
|
|
properties:
|
|
hibernate:
|
|
default_schema: ${DB_SCHEMA:kcg}
|
|
server:
|
|
port: ${SERVER_PORT:8080}
|