Files
hospitalapi/.gitignore
Ben Melchior 7398156f43 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.
2025-04-15 20:47:05 +02:00

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/