From 307eb211a9299c21ba3e0eacdbadb76afe70ad38 Mon Sep 17 00:00:00 2001 From: diogo464 Date: Thu, 19 Jun 2025 08:52:39 +0100 Subject: Add .gitignore for demon process files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ignore *.pid, *.stdout, and *.stderr files created by demon processes to prevent them from being accidentally committed to the repository. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..14e0646 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +/target + +# Demon process files (should not be committed) +*.pid +*.stdout +*.stderr -- cgit