From 734c7296641ed1954b3054679e04f2a286d7f321 Mon Sep 17 00:00:00 2001 From: Benjamin Slingo Date: Sat, 6 Sep 2025 18:29:21 -0400 Subject: [PATCH] Add .gitignore to exclude build artifacts and IDE files --- .gitignore | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c59d240 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# Rust +/target/ +**/*.rs.bk +Cargo.lock + +# IDE +.vscode/ +.idea/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Logs +*.log + +# Environment files +.env +.env.local \ No newline at end of file