chore: update .gitignore, modify log file pattern, and add package-lock.json

- Added entries to .gitignore for node_modules and dist directories in the dashboard UI.
- Updated log file pattern in log_parser.py to match 'bot*.log' instead of 'bot_*.log'.
- Introduced package-lock.json for the dashboard UI to manage dependencies.
- Updated CLAUDE.md to reflect the status of code review improvements.
- Added new weekly report files in HTML and JSON formats for 2026-03-07.
- Updated binary parquet files for dogeusdt, trxusdt, and xrpusdt with new data.
This commit is contained in:
21in7
2026-03-09 22:57:23 +09:00
parent cdde1795db
commit de27f85e6d
9 changed files with 17576 additions and 3 deletions

2
.gitignore vendored
View File

@@ -16,3 +16,5 @@ data/*.parquet
.worktrees/ .worktrees/
.venv .venv
dashboard/ui/node_modules/
dashboard/ui/dist/

View File

@@ -138,4 +138,4 @@ All design documents and implementation plans are stored in `docs/plans/` with t
| 2026-03-06 | `multi-symbol-dashboard` (design + plan) | Completed | | 2026-03-06 | `multi-symbol-dashboard` (design + plan) | Completed |
| 2026-03-06 | `strategy-parameter-sweep` (plan) | Completed | | 2026-03-06 | `strategy-parameter-sweep` (plan) | Completed |
| 2026-03-07 | `weekly-report` (plan) | Completed | | 2026-03-07 | `weekly-report` (plan) | Completed |
| 2026-03-07 | `code-review-improvements` | Pending | | 2026-03-07 | `code-review-improvements` | Partial (#1,#2,#4,#5,#6,#8 완료) |

View File

@@ -214,7 +214,7 @@ class LogParser:
time.sleep(POLL_INTERVAL) time.sleep(POLL_INTERVAL)
def _scan_logs(self): def _scan_logs(self):
log_files = sorted(glob.glob(os.path.join(LOG_DIR, "bot_*.log"))) log_files = sorted(glob.glob(os.path.join(LOG_DIR, "bot*.log")))
main_log = os.path.join(LOG_DIR, "bot.log") main_log = os.path.join(LOG_DIR, "bot.log")
if os.path.exists(main_log): if os.path.exists(main_log):
log_files.append(main_log) log_files.append(main_log)

2055
dashboard/ui/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff