chore(signal_v2): sync holidays.json from stock + start.bat launcher

- holidays.json: authoritative copy from web-backend/stock/app/holidays.json
  (replaces 13-date stub from Task 3; now 16 dates including Jan/May/Dec edges)
- start.bat: uvicorn launcher (cd to web-ai root, host 0.0.0.0, port 8001)

19 tests still pass.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-16 03:55:41 +09:00
parent e47947fb69
commit 8342d38935
2 changed files with 10 additions and 4 deletions

View File

@@ -1,15 +1,18 @@
[ [
"2026-01-01", "2026-01-01",
"2026-02-16", "2026-01-28",
"2026-02-17", "2026-01-29",
"2026-01-30",
"2026-03-01", "2026-03-01",
"2026-05-05", "2026-05-05",
"2026-05-25",
"2026-06-06", "2026-06-06",
"2026-08-15", "2026-08-15",
"2026-09-24",
"2026-09-25", "2026-09-25",
"2026-09-26", "2026-09-26",
"2026-09-27",
"2026-10-03", "2026-10-03",
"2026-10-09", "2026-10-09",
"2026-12-25" "2026-12-25",
"2026-12-31"
] ]

3
signal_v2/start.bat Normal file
View File

@@ -0,0 +1,3 @@
@echo off
cd /d "%~dp0\.."
python -m uvicorn signal_v2.main:app --host 0.0.0.0 --port 8001