From 167afb3a3194054b0e18636b0f5d4ebb82d9697a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 29 Oct 2025 11:06:58 +0000 Subject: [PATCH] Add .gitignore to protect sensitive config files Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com> --- .gitignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..c46bf9da --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# Ignore database configuration files with sensitive credentials +modules/billing/includes/config.inc.php + +# Ignore logs +modules/billing/logs/*.log +modules/billing/logs/*.txt + +# Ignore data directory (payment JSONs) +modules/billing/data/*.json +!modules/billing/data/.gitkeep + +# Ignore backup files +*.backup +*.bak +*~ + +# Ignore OS files +.DS_Store +Thumbs.db + +# Ignore IDE files +.vscode/ +.idea/ +*.swp +*.swo + +# Ignore temporary files +/tmp/ +*.tmp