清理工作: - .gitignore 新增 playwright-report/ 和 test-results/ 排除 - 保留 phase19/ 參考截圖目錄 kube-state-metrics 告警擴充 (P3): - CronJobLastRunFailed: Job 執行失敗 - DaemonSetMissingPods: DaemonSet 缺少 Pod - StatefulSetReplicasMismatch: StatefulSet 副本不足 - ContainerWaiting: ImagePullBackOff/CrashLoopBackOff 偵測 - PDBViolation: PDB 健康 Pod 數不足 - NodeUnschedulable: 節點標記為不可排程 新增: - apps/api/scripts/test_nemotron_tool_calling.py (E2E 比較測試) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
81 lines
1.2 KiB
Plaintext
81 lines
1.2 KiB
Plaintext
# =============================================================================
|
|
# AWOOOI - .gitignore
|
|
# =============================================================================
|
|
|
|
# 依賴套件
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
yarn.lock
|
|
package-lock.json
|
|
|
|
# 測試與建置產物
|
|
coverage/
|
|
.next/
|
|
out/
|
|
build/
|
|
dist/
|
|
.turbo/
|
|
|
|
# Playwright 測試產物 (動態生成,不需版本控制)
|
|
**/playwright-report/
|
|
**/test-results/
|
|
# 保留 Phase 19 參考截圖
|
|
!apps/web/test-results/phase19/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.Python
|
|
*.so
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# 環境變數與機密 (絕對不能進 Git)
|
|
.env
|
|
.env.*
|
|
.env.local
|
|
.env.*.local
|
|
*.pem
|
|
*.key
|
|
secrets/
|
|
|
|
# 日誌
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
.pnpm-debug.log*
|
|
*.log
|
|
|
|
# 編輯器設定
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# 系統檔案
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Workspace 檔案 (本地使用,不需提交)
|
|
*.code-workspace
|
|
|
|
# Kubernetes 機密
|
|
*-secret.yaml
|
|
*-secrets.yaml
|
|
|
|
# 暫存檔案
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# AI Tools & Agents (本地使用,不需提交到 Git)
|
|
# 防止 Claude Code worktrees 干擾 CI/CD checkout
|
|
.claude/worktrees/
|
|
.claude/scheduled_tasks.lock
|
|
.cursor/
|
|
.agents/memory/
|