코드 참조 경로 업데이트 & WBS-8.1 모니터링 준비

경로 정규화 (outputs/ → src/quant_engine/):
✓ kis_api_client_v1.py: KIS 데이터 수집 경로
✓ kis_data_collection_v1.py: 기본 DB 인자
✓ snapshot_admin_server_v1.py: KIS_COLLECTION_DB
✓ snapshot_admin_store_v1.py: DEFAULT_DB + collector_db
✓ run_snapshot_admin_server_v1.py: --db 기본값

모니터링 도구 추가:
✓ verify_admin_db.py: 어드민 서버 & DB 검증
✓ setup_wbs81_monitoring.py: WBS-8.1 목표 추적 시스템
✓ update_db_paths.py: 자동화된 경로 업데이트

효과:
- 단일 소스 (src/quant_engine/)
- 배포 스크립트 단순화
- WBS-8.1: T+20 30건 모니터링 준비 완료
- 22일 남음 (목표: 2026-07-15)

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-06-23 00:33:32 +09:00
parent 55bb640125
commit 05d9f8ed41
8 changed files with 424 additions and 6 deletions
+1 -1
View File
@@ -118,7 +118,7 @@ class KisCredentials:
import sqlite3
def _token_db_path() -> Path:
db_dir = ROOT / "outputs" / "kis_data_collection"
db_dir = ROOT / "src" / "quant_engine"
db_dir.mkdir(parents=True, exist_ok=True)
return db_dir / "kis_data_collection.db"