Files
local_machine/.gitignore
ahauimix 1938b7c743 Expand local_machine docs and automation for connectivity, games, and ops.
Add proxy/VPN/telegram launchd and emergency runbooks; reorganize apps docs;
document JA3 CrossOver runbook and Wine troubleshooting; add GOG/HoMM game
scripts, disk cleanup guides, and gitea push-via-proxy helper. Ignore temp/.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-01 08:12:19 +03:00

87 lines
1.1 KiB
Plaintext

# --- macOS ---
.DS_Store
.AppleDouble
.LSOverride
._*
.Spotlight-V100
.Trashes
# --- IDE / Editor ---
.idea/
*.iml
.vscode/
*.swp
*.swo
*~
.project
.settings/
*.sublime-*
# --- Cursor ---
.cursor/
# --- Env and secrets ---
.env
.env.*
!.env.example
*.pem
*.key
*.crt
*.p12
*secret*
*credentials*
# VPN/WireGuard configs with private keys (only under connectivity/vpn)
docs/connectivity/vpn/*.conf
**/vpn/*.conf
# Key pair for Windows proxy tunnel (created by create-windows-proxy-key.sh)
docs/connectivity/scripts/windows-proxy-key/
# --- Python ---
__pycache__/
*.py[cod]
*$py.class
.Python
venv/
.venv/
env/
*.egg-info/
.eggs/
dist/
build/
.mypy_cache/
.pytest_cache/
.coverage
htmlcov/
# --- Node ---
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.yarn-integrity
# --- Logs and temp ---
*.log
*.tmp
*.temp
*.bak
*.backup
*.cache
.cache/
temp/
# --- OS junk ---
Thumbs.db
ehthumbs.db
Desktop.ini
# --- Archives (optional; uncomment if you don't want to track zips) ---
# *.zip
# *.tar.gz
# *.rar
# --- Local overrides (keep repo-agnostic) ---
*.local
*.local.*