69 lines
No EOL
934 B
Text
69 lines
No EOL
934 B
Text
# .gitignore for JSP / Java web applications
|
|
# Ignore compiled classes
|
|
*.class
|
|
|
|
# Build directories (Maven, Gradle, Ant, etc.)
|
|
/target/
|
|
/build/
|
|
/out/
|
|
/dist/
|
|
/bin/
|
|
|
|
# Webapp build artifacts and generated classes
|
|
/WEB-INF/classes/
|
|
*.war
|
|
*.ear
|
|
|
|
# Logs, temp and swap files
|
|
*.log
|
|
*.tmp
|
|
*.swp
|
|
*.bak
|
|
|
|
# Servlet container / Tomcat runtime files
|
|
logs/
|
|
temp/
|
|
work/
|
|
|
|
# IDEs and editors
|
|
/.idea/
|
|
/.vscode/
|
|
*.iml
|
|
/.project
|
|
/.classpath
|
|
/.settings/
|
|
/nbproject/
|
|
|
|
# Maven / Gradle caches
|
|
/.mvn/
|
|
/.gradle/
|
|
|
|
# Node / frontend
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment files
|
|
.env
|
|
|
|
# User uploads, caches, and runtime temp data
|
|
/uploads/
|
|
/tmp/
|
|
/cache/
|
|
|
|
# Optional: if your project CHECKS IN vendor jars, remove the next line
|
|
# /WEB-INF/lib/*.jar
|
|
|
|
/admin/_V4/**
|
|
www/admin/_V4/fontawesome-5/**
|
|
www/admin/_V4/_lib/**
|
|
www/pdftest/**
|
|
www/js-flipbook/**
|
|
www/admin/_V4/**
|
|
www/csv/**
|
|
www/admin/_sounds/**
|
|
www/mp3/** |