From 75ff91565402d14e076bda66f829e8cdbfd3b281 Mon Sep 17 00:00:00 2001 From: whlaoding Date: Sat, 21 Feb 2026 23:31:30 +0800 Subject: [PATCH] chore: add .gitignore to protect config files --- .gitignore | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a9bfd37 --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +# Ignore all files under configs/ except files ending with .sample +/configs/* +!/configs/*.sample + +# Local env files and common secrets +.env +.env.local +*.key +*.pem + +# Build outputs +/bin/ +/*.exe +/*.exe~ + +# Editor temp files +*~ +.DS_Store \ No newline at end of file