48 lines
479 B
Plaintext
48 lines
479 B
Plaintext
# Git/VCS
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
.github
|
|
|
|
# IDE/editor
|
|
.idea
|
|
.vscode
|
|
.classpath
|
|
.project
|
|
.settings
|
|
*.iml
|
|
|
|
# OS/filesystem noise
|
|
.DS_Store
|
|
|
|
# Caches & temp
|
|
**/.gradle
|
|
**/.cache
|
|
**/tmp
|
|
**/logs
|
|
**/*.log
|
|
|
|
# Build outputs (keep source in docker build)
|
|
**/build
|
|
!ui/build
|
|
**/out
|
|
**/target
|
|
**/dist
|
|
!ui-next/dist
|
|
**/coverage
|
|
|
|
# Python
|
|
venv
|
|
**/__pycache__/
|
|
**/.pytest_cache/
|
|
|
|
# JS tooling
|
|
**/node_modules
|
|
**/.npm
|
|
**/.yarn
|
|
**/.pnpm-store
|
|
**/.eslintcache
|
|
**/.parcel-cache
|
|
**/.next
|
|
|