194 lines
3.0 KiB
Plaintext
194 lines
3.0 KiB
Plaintext
# ============================================================================
|
|
# Lions User Manager - .gitignore
|
|
# ============================================================================
|
|
|
|
# ==========================
|
|
# Maven
|
|
# ==========================
|
|
target/
|
|
pom.xml.tag
|
|
pom.xml.releaseBackup
|
|
pom.xml.versionsBackup
|
|
pom.xml.next
|
|
release.properties
|
|
dependency-reduced-pom.xml
|
|
buildNumber.properties
|
|
.mvn/timing.properties
|
|
.mvn/wrapper/maven-wrapper.jar
|
|
|
|
# ==========================
|
|
# Build artifacts
|
|
# ==========================
|
|
*.class
|
|
*.jar
|
|
*.war
|
|
*.ear
|
|
*.zip
|
|
*.tar.gz
|
|
*.rar
|
|
*.idx
|
|
|
|
# ==========================
|
|
# IDE - Eclipse
|
|
# ==========================
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
.metadata/
|
|
bin/
|
|
tmp/
|
|
|
|
# ==========================
|
|
# IDE - IntelliJ IDEA
|
|
# ==========================
|
|
.idea/
|
|
*.iws
|
|
*.iml
|
|
*.ipr
|
|
out/
|
|
.idea_modules/
|
|
|
|
# ==========================
|
|
# IDE - NetBeans
|
|
# ==========================
|
|
nbproject/private/
|
|
build/
|
|
nbbuild/
|
|
dist/
|
|
nbdist/
|
|
.nb-gradle/
|
|
|
|
# ==========================
|
|
# IDE - VS Code
|
|
# ==========================
|
|
.vscode/
|
|
*.code-workspace
|
|
.history/
|
|
|
|
# ==========================
|
|
# IDE - Other
|
|
# ==========================
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# ==========================
|
|
# OS Files
|
|
# ==========================
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
|
|
# ==========================
|
|
# JVM Logs & Crashes
|
|
# ==========================
|
|
*.log
|
|
logs/
|
|
*.log.*
|
|
quarkus.log
|
|
hs_err_pid*
|
|
replay_pid*
|
|
|
|
# ==========================
|
|
# Test Output
|
|
# ==========================
|
|
test_output*.txt
|
|
surefire-reports/
|
|
failsafe-reports/
|
|
*.dump
|
|
*.dumpstream
|
|
coverage/
|
|
.nyc_output/
|
|
test-results/
|
|
junit.xml
|
|
.jacoco/
|
|
jacoco.exec
|
|
|
|
# ==========================
|
|
# Temporary Files
|
|
# ==========================
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
*.swp
|
|
*.orig
|
|
*~
|
|
.cache/
|
|
|
|
# ==========================
|
|
# Quarkus
|
|
# ==========================
|
|
.quarkus/
|
|
quarkus-app/
|
|
quarkus-run.jar
|
|
quarkus-*.dat
|
|
.devservices/
|
|
|
|
# ==========================
|
|
# Node.js (si build frontend)
|
|
# ==========================
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# ==========================
|
|
# Credentials & Secrets
|
|
# ==========================
|
|
token.json
|
|
token.txt
|
|
*.token
|
|
*.local.json
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*-credentials.ps1
|
|
*-secrets.ps1
|
|
*-password.ps1
|
|
|
|
# ==========================
|
|
# Application Local Config
|
|
# ==========================
|
|
application-local.properties
|
|
application-*.local.properties
|
|
|
|
# ==========================
|
|
# Database
|
|
# ==========================
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# ==========================
|
|
# Generated
|
|
# ==========================
|
|
generated-sources/
|
|
generated-test-sources/
|
|
maven-status/
|
|
build-metrics.json
|
|
docs/generated/
|
|
site/
|
|
|
|
# ==========================
|
|
# Sass
|
|
# ==========================
|
|
.sass-cache/
|
|
*.css.map
|
|
|
|
# ==========================
|
|
# Cleanup Script (auto)
|
|
# ==========================
|
|
cleanup.ps1
|
|
|
|
# ==========================
|
|
# AI Agent
|
|
# ==========================
|
|
.claude/
|