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.
This commit is contained in:
45
.gitignore
vendored
45
.gitignore
vendored
@@ -1,4 +1,45 @@
|
|||||||
|
# Rust specific
|
||||||
|
/target/
|
||||||
|
**/*.rs.bk
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
/target
|
*.pdb
|
||||||
.DS_Store
|
|
||||||
|
# Environment variables
|
||||||
.env
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.development.local
|
||||||
|
.env.test.local
|
||||||
|
.env.production.local
|
||||||
|
|
||||||
|
# IDE specific files
|
||||||
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# 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/
|
||||||
Reference in New Issue
Block a user