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