新增功能: - WORKORDER/LOT ID 模糊搜尋與 autocomplete 下拉選單 - DUMMY lot 預設排除機制 (可透過 include_dummy 參數覆蓋) - WIP Detail 頁面,支援四種篩選條件組合 - 搜尋 API 端點 GET /api/wip/meta/search 穩定性改進: - 改用 NullPool 取代連線池,避免長時間閒置連線被防火牆中斷 - 新增 gunicorn worker timeout (60s),防止 worker 卡死 - 前端 fetchWithTimeout 機制,30 秒 API 逾時處理 - 改進 start_server.sh 停止邏輯,處理孤兒 worker 進程 其他: - Echarts 下載至本地,避免 CDN 追蹤保護警告 - 新增 WIP 篩選功能單元測試 - 更新 MES 核心表分析報告,加入 DWH.DW_PJ_LOT_V 說明 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
54 lines
518 B
Plaintext
54 lines
518 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
|
|
# Package build artifacts
|
|
*.egg-info/
|
|
*.egg
|
|
dist/
|
|
build/
|
|
*.whl
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*.sublime-*
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Local config (credentials)
|
|
.env
|
|
|
|
# AI/LLM tools
|
|
.claude/
|
|
.codex/
|
|
|
|
# Test artifacts
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
|
|
# Note: openspec/ is tracked (not ignored)
|
|
tmp/
|