Compare commits

..

No commits in common. "29477e4e2aff45351224fd921695503e2a4b5aa6" and "94e08370724bd2ddd4480e8225bbe62075a7964a" have entirely different histories.

2개의 변경된 파일2개의 추가작업 그리고 7개의 파일을 삭제

파일 보기

@ -2,7 +2,7 @@ import { wingPool } from '../db/wingDb.js';
import { getBacktrack } from './predictionService.js';
const PYTHON_API_URL = process.env.PYTHON_API_URL ?? 'http://localhost:5003';
const VESSEL_TRACK_API_URL = process.env.VESSEL_TRACK_API_URL ?? 'https://guide.gc-si.dev/signal-batch';
const VESSEL_TRACK_API_URL = process.env.VESSEL_TRACK_API_URL ?? 'http://localhost:9090';
// 유종 코드(DB) → OpenDrift 유종 코드 매핑
const OIL_TYPE_MAP: Record<string, string> = {
@ -288,7 +288,7 @@ async function fetchVesselTracks(
console.log(body);
const res = await fetch(`${VESSEL_TRACK_API_URL}/api/v2/tracks/area-search`, {
const res = await fetch(`${VESSEL_TRACK_API_URL}`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(body),

파일 보기

@ -4,11 +4,6 @@
## [Unreleased]
## [2026-03-27.2]
### 수정
- 역추적: 선박 항적 API URL을 프로덕션 URL로 변경 및 엔드포인트 경로 추가 (/api/v2/tracks/area-search)
## [2026-03-27]
### 추가