Refactoring - Bonne version améliorée
This commit is contained in:
78
.gitignore
vendored
78
.gitignore
vendored
@@ -1,51 +1,103 @@
|
||||
#Maven
|
||||
# ====================
|
||||
# Maven
|
||||
# ====================
|
||||
target/
|
||||
pom.xml.tag
|
||||
pom.xml.releaseBackup
|
||||
pom.xml.versionsBackup
|
||||
release.properties
|
||||
.flattened-pom.xml
|
||||
dependency-reduced-pom.xml
|
||||
|
||||
# Eclipse
|
||||
# ====================
|
||||
# IDE - Eclipse
|
||||
# ====================
|
||||
.project
|
||||
.classpath
|
||||
.settings/
|
||||
bin/
|
||||
|
||||
# IntelliJ
|
||||
.idea
|
||||
# ====================
|
||||
# IDE - IntelliJ IDEA
|
||||
# ====================
|
||||
.idea/
|
||||
*.ipr
|
||||
*.iml
|
||||
*.iws
|
||||
out/
|
||||
|
||||
# NetBeans
|
||||
# ====================
|
||||
# IDE - NetBeans
|
||||
# ====================
|
||||
nb-configuration.xml
|
||||
|
||||
# Visual Studio Code
|
||||
.vscode
|
||||
# ====================
|
||||
# IDE - Visual Studio Code
|
||||
# ====================
|
||||
.vscode/
|
||||
.factorypath
|
||||
|
||||
# OSX
|
||||
# ====================
|
||||
# OS - macOS
|
||||
# ====================
|
||||
.DS_Store
|
||||
._*
|
||||
|
||||
# Vim
|
||||
# ====================
|
||||
# OS - Windows
|
||||
# ====================
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
ehthumbs.db
|
||||
|
||||
# ====================
|
||||
# Vim / Editors
|
||||
# ====================
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# patch
|
||||
# ====================
|
||||
# Patch files
|
||||
# ====================
|
||||
*.orig
|
||||
*.rej
|
||||
|
||||
# Local environment
|
||||
# ====================
|
||||
# Environment & Secrets
|
||||
# ====================
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
application-local.properties
|
||||
*-secrets.yaml
|
||||
*.pem
|
||||
*.key
|
||||
*.p12
|
||||
*.jks
|
||||
|
||||
# Plugin directory
|
||||
# ====================
|
||||
# Quarkus
|
||||
# ====================
|
||||
/.quarkus/cli/plugins/
|
||||
# TLS Certificates
|
||||
.certs/
|
||||
|
||||
# ====================
|
||||
# Logs
|
||||
# ====================
|
||||
*.log
|
||||
logs/
|
||||
hs_err_pid*.log
|
||||
replay_pid*.log
|
||||
backend_log.txt
|
||||
|
||||
# ====================
|
||||
# Test output
|
||||
# ====================
|
||||
test-output/
|
||||
surefire-reports/
|
||||
|
||||
# ====================
|
||||
# Docker (local)
|
||||
# ====================
|
||||
docker-compose.override.yml
|
||||
|
||||
Reference in New Issue
Block a user