- 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.
45 lines
435 B
Plaintext
45 lines
435 B
Plaintext
# Rust specific
|
|
/target/
|
|
**/*.rs.bk
|
|
Cargo.lock
|
|
*.pdb
|
|
|
|
# Environment variables
|
|
.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/ |