Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 23 additions & 28 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,46 +1,41 @@
```
# Compiled and build artifacts
# Java/Maven build artifacts
target/
*.class
*.o
*.obj
*.out
*.exe
*.dll
*.so
*.a
*.jar
*.war
*.ear

# Dependencies
target/
.gradle/
**/node_modules/
**/venv/
**/.venv/
**/__pycache__/
**/.mypy_cache/
**/.pytest_cache/
# Maven-specific
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties

# Logs and temp files
# Generated files
*.jks
*.keystore

# Logs
*.log
*.tmp
*.swp

# Environment
# Environment specific
.env
.env.local
*.env.*

# Editors
# IDE files
.vscode/
.idea/
*.swp
*.swo
*.tmp

# Coverage
coverage/
htmlcov/
.coverage

# System
# OS generated files
.DS_Store
Thumbs.db
```
Loading