- 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>
20 lines
679 B
YAML
20 lines
679 B
YAML
spring:
|
|
datasource:
|
|
url: ${DB_URL:jdbc:postgresql://211.208.115.83:5432/kcgdb?currentSchema=kcg,public}
|
|
username: ${DB_USERNAME:kcg_app}
|
|
password: ${DB_PASSWORD}
|
|
app:
|
|
jwt:
|
|
secret: ${JWT_SECRET}
|
|
expiration-ms: ${JWT_EXPIRATION_MS:86400000}
|
|
google:
|
|
client-id: ${GOOGLE_CLIENT_ID}
|
|
auth:
|
|
allowed-domain: ${AUTH_ALLOWED_DOMAIN:gcsc.co.kr}
|
|
collector:
|
|
open-sky-client-id: ${OPENSKY_CLIENT_ID:}
|
|
open-sky-client-secret: ${OPENSKY_CLIENT_SECRET:}
|
|
prediction-base-url: ${PREDICTION_BASE_URL:http://192.168.1.18:8001}
|
|
cors:
|
|
allowed-origins: ${APP_CORS_ALLOWED_ORIGINS:http://localhost:5174,http://localhost:5173,https://kcg.gc-si.dev}
|