From e49f494980fb3eb21663429bd92802c135eb87d6 Mon Sep 17 00:00:00 2001 From: nocci Date: Thu, 12 Mar 2026 23:29:41 +0000 Subject: [PATCH] Add .gitignore to prevent sensitive files from being committed --- .gitignore | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0114611 --- /dev/null +++ b/.gitignore @@ -0,0 +1,68 @@ +# ============================================================================ +# .gitignore - Komodo Stacks +# Prevents sensitive files from being committed +# ============================================================================ + +# Secret/Environment files +*.env +*.env.* +.env.local +.env.*.local +*.secrets +*.secret + +# Backup files +*.cfg.backup* +*.backup* +*.bak +*.old +*~ + +# Local config (should NOT be committed) +local.toml +local.yml +local.yaml +config.local.* + +# IDE / Editor +.vscode/ +.idea/ +*.swp +*.swo +*.tmp + +# OS files +.DS_Store +Thumbs.db + +# Logs +*.log +logs/ + +# Temporary files +tmp/ +temp/ +*.tmp + +# Credentials +credentials.json +credentials.yaml +credentials.toml +auth.json + +# Keys +*.pem +*.key +*.p12 +*.pfx + +# ============================================================================ +# SECURITY: Never commit these! +# ============================================================================ +# - Tokens / API Keys +# - Passwords +# - Private keys +# - .git/config (contains remote URLs with credentials) +# - Any file with "secret", "token", "password", "credential" in name +# - Database dumps +# ============================================================================