26 lines
299 B
Plaintext
26 lines
299 B
Plaintext
# Python virtual environment
|
|
.venv/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Environment variables / Secrets (WIS-008)
|
|
.env
|
|
.envrc
|
|
secrets.json
|
|
|
|
# VS Code settings
|
|
.vscode/
|
|
|
|
# Windows system files
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# MCP Inspector logs
|
|
logs/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
__pycache__/ |