Initial commit: local_machine docs and scripts

This commit is contained in:
ahauimix
2026-03-14 20:03:57 +03:00
commit a39ef89125
85 changed files with 14500 additions and 0 deletions

83
.gitignore vendored Normal file
View File

@@ -0,0 +1,83 @@
# --- 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
# --- 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/
# --- 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.*