From f0ca867605327640c633c01f2c5bce17d00b556b Mon Sep 17 00:00:00 2001 From: "Hanson.xyz Dev" Date: Sun, 4 Jan 2026 19:23:20 -0600 Subject: [PATCH] Add wp-config.php to gitignore, create dist template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove wp-config.php from tracking (contains secrets) - Add wp-config.php.dist as template for new installs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .gitignore | 4 ++-- wp-config.php => wp-config.php.dist | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename wp-config.php => wp-config.php.dist (100%) diff --git a/.gitignore b/.gitignore index 70c8055d..5a473d30 100755 --- a/.gitignore +++ b/.gitignore @@ -9,8 +9,8 @@ .env.local .env.*.local -# WordPress config with secrets (keep sample) -# wp-config.php # Commenting out - we want to track this for snapshots +# WordPress config with secrets (use wp-config.php.dist as template) +wp-config.php # Uploads (too large for git, backup separately) wp-content/uploads/ diff --git a/wp-config.php b/wp-config.php.dist similarity index 100% rename from wp-config.php rename to wp-config.php.dist