aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-06-19 08:52:39 +0100
committerdiogo464 <[email protected]>2025-06-19 08:52:39 +0100
commit307eb211a9299c21ba3e0eacdbadb76afe70ad38 (patch)
tree4ec26eef5dfab22468f73648884339769aa3a2c4
parent39b3d9bfd499e131fd8a9bd1bf0021b62ec18c53 (diff)
Add .gitignore for demon process files
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 <[email protected]>
-rw-r--r--.gitignore6
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..14e0646
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
1/target
2
3# Demon process files (should not be committed)
4*.pid
5*.stdout
6*.stderr