mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2026-03-04 02:20:19 +01:00
53 lines
552 B
Plaintext
53 lines
552 B
Plaintext
# Version control
|
|
.git/
|
|
.gitignore
|
|
|
|
# Build outputs
|
|
build/
|
|
*/build/
|
|
**/build/
|
|
out/
|
|
target/
|
|
|
|
# Gradle caches (local, not what's in the container)
|
|
.gradle/
|
|
**/.gradle/
|
|
|
|
# Node / frontend
|
|
node_modules/
|
|
**/node_modules/
|
|
.npm/
|
|
.yarn/
|
|
|
|
# IDE and editor
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
|
|
# Logs and temp files
|
|
*.log
|
|
*.tmp
|
|
*.pid
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker itself
|
|
Dockerfile*
|
|
.dockerignore
|
|
|
|
# CI / CD configs (not needed in build context)
|
|
.github/
|
|
.circleci/
|
|
.gitlab-ci.yml
|
|
|
|
# Test reports
|
|
**/test-results/
|
|
**/jacoco/
|
|
|
|
# Local env
|
|
.env
|
|
.env.*
|
|
!.env.example
|