mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
39 lines
576 B
Plaintext
39 lines
576 B
Plaintext
# Exclude VCS and IDE files
|
|
.git
|
|
.gitignore
|
|
.idea/
|
|
*.iml
|
|
|
|
# Gradle caches
|
|
.gradle/
|
|
**/.gradle/
|
|
|
|
# Node modules and app build cache
|
|
app/node_modules/
|
|
app/.pnpm-store/
|
|
app/.npm/
|
|
app/.yarn/
|
|
app/.vite/
|
|
app/dist/
|
|
|
|
# General build outputs (keep only the jars we actually need)
|
|
**/build/
|
|
!app/build/
|
|
!app/build/libs/
|
|
!app/build/libs/app.jar
|
|
|
|
# Exclude plugin runtime data (source code is needed for build)
|
|
plugins/data/
|
|
plugins/state/
|
|
plugins/**/*.jar
|
|
|
|
# Large local/runtime data not needed in image context
|
|
data/
|
|
db/
|
|
logs/
|
|
plugindata/
|
|
|
|
# Docker intermediate artifacts
|
|
**/.DS_Store
|
|
|