From 9d3e0ffef7f999021641537f938a61cc8f488e08 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Wed, 14 May 2025 16:44:05 -0400 Subject: [PATCH] update --- .gitignore | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6dfe716 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +# === Rust artifacts === +/target/ +/Cargo.lock + +# === IDEs & editors === +.idea/ +.vscode/ +*.swp +*.swo +*.bak +*~ + +# === OS files === +.DS_Store +Thumbs.db +ehthumbs.db +desktop.ini + +# === Logs and build artifacts === +*.log +*.out +*.err + +# === Marlin-specific === +/index.db +index.db +*.sqlite +*.sqlite-wal +*.sqlite-shm + +# === Tests and scratch === +/tmp/ +*.test.db +test.db + +# === Environment variables and secrets === +.env +.env.*