mirror of
https://github.com/jmagar/unraid-mcp.git
synced 2026-03-23 12:39:24 -07:00
The Unraid graphql-ws server expects the API key directly in connectionParams as `x-api-key`, not nested under `headers`. The old format caused the server to fall through to cookie auth and crash on `undefined.csrf_token`. Fixed in snapshot.py (×2), manager.py, diagnostics.py, and updated the integration test assertion to match the correct payload shape.
75 lines
1.1 KiB
Plaintext
75 lines
1.1 KiB
Plaintext
# Python-generated files
|
|
__pycache__/
|
|
*.py[oc]
|
|
build/
|
|
dist/
|
|
wheels/
|
|
*.egg-info
|
|
*.egg
|
|
|
|
# Tool artifacts (pytest, ruff, ty, coverage all write here)
|
|
.cache/
|
|
|
|
# Hypothesis example database (machine-local, auto-regenerated)
|
|
.hypothesis/
|
|
|
|
# Legacy artifact locations (in case tools run outside pyproject config)
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.ty_cache/
|
|
htmlcov/
|
|
.coverage
|
|
coverage.xml
|
|
|
|
# Virtual environments
|
|
.venv
|
|
.venv-backend
|
|
|
|
# Environment files (only .env.example is tracked)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# IDE/Editor
|
|
.bivvy
|
|
.cursor
|
|
.windsurf/
|
|
.1code/
|
|
.emdash.json
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.bak-*
|
|
|
|
# Claude Code user settings (gitignore local settings)
|
|
.claude/settings.local.json
|
|
|
|
# Serena IDE configuration
|
|
.serena/
|
|
|
|
# Claude Code worktrees (temporary agent isolation dirs)
|
|
.claude/worktrees/
|
|
|
|
# Documentation and session artifacts
|
|
.docs/
|
|
.full-review/
|
|
/docs/plans/
|
|
/docs/sessions/
|
|
/docs/reports/
|
|
/docs/research/
|
|
/docs/superpowers/
|
|
|
|
# Test planning documents
|
|
/DESTRUCTIVE_ACTIONS.md
|
|
|
|
# Google OAuth client secrets
|
|
client_secret_*.apps.googleusercontent.com.json
|
|
|
|
web-ui/frontend/node_modules
|
|
web-ui/backend/.venv-backend/
|
|
.pnpm-store/
|