From ac17788837a709e2134c139d405f604c28a42627 Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Wed, 15 Oct 2025 14:01:28 +0200 Subject: [PATCH] build: add .gitignore file with common exclusions Add standard .gitignore entries to exclude development environment files, OS-generated files, temporary files, and other common patterns from version control --- .gitignore | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c04a1b4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +# ElectrumX data directory +/data/ + +# Docker volumes and logs +*.log + +# IDE and editor files +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS generated files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Temporary files +*.tmp +*.temp \ No newline at end of file