From 7398156f430c27d1e30d84ebf336d5a0c046b870 Mon Sep 17 00:00:00 2001 From: Ben Melchior Date: Tue, 15 Apr 2025 20:47:05 +0200 Subject: [PATCH] Update .gitignore to include additional file patterns for better exclusion - Added various file patterns to .gitignore to prevent tracking of build artifacts, logs, database files, temporary files, and IDE-specific configurations. - Ensured that sensitive environment files and Docker-related files are ignored to maintain a clean repository. --- .gitignore | 45 +++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 35f414b..ee544f3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,45 @@ +# Rust specific +/target/ +**/*.rs.bk Cargo.lock -/target +*.pdb + +# Environment variables +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + +# IDE specific files +.idea/ +.vscode/ +*.swp +*.swo .DS_Store -.env \ No newline at end of file + +# Docker related +.docker/ +docker-compose.override.yml + +# Logs +*.log +logs/ + +# Database +*.sqlite +*.db + +# Build artifacts +/dist/ +/build/ +/out/ + +# Dependencies +/vendor/ +/node_modules/ + +# Temporary files +*.tmp +*.temp +.cache/ \ No newline at end of file