Files

119 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

# Version control
.git/
2025-11-14 13:02:45 +00:00
.gitignore
2026-04-23 14:52:25 +01:00
.git-blame-ignore-revs
.gitattributes
2025-11-14 13:02:45 +00:00
# Build outputs
build/
*/build/
**/build/
out/
target/
2026-03-25 15:41:58 +00:00
**/target/
bin/
version_builds/
# Gradle caches (local, not what's in the container)
.gradle/
**/.gradle/
2026-04-23 14:52:25 +01:00
.gradle-home/
# Task (go-task) cache
.task/
# Node / frontend
node_modules/
**/node_modules/
2026-03-25 15:41:58 +00:00
frontend/node_modules/
2026-06-02 17:08:24 +01:00
frontend/editor/dist/
frontend/editor/playwright-report/
.npm/
.yarn/
2026-03-25 15:41:58 +00:00
# Tauri/desktop builds
src-tauri/target/
src-tauri/dist/
2026-05-26 17:50:13 +01:00
frontend/editor/src-tauri/target/
frontend/editor/src-tauri/dist/
2026-03-25 15:41:58 +00:00
# IDE and editor
.idea/
.vscode/
2026-04-23 14:52:25 +01:00
.settings/
.settings.zip
.classpath
.project
.devcontainer/
2025-11-14 13:02:45 +00:00
*.iml
*.ipr
*.iws
2025-11-14 13:02:45 +00:00
# Logs and temp files
2025-11-14 13:02:45 +00:00
*.log
*.tmp
*.pid
2025-11-14 13:02:45 +00:00
.DS_Store
Thumbs.db
2026-04-23 14:52:25 +01:00
logs/
2025-11-14 13:02:45 +00:00
# Docker itself
Dockerfile*
2025-11-14 13:02:45 +00:00
.dockerignore
# CI / CD configs (not needed in build context)
.github/
.circleci/
2025-11-14 13:02:45 +00:00
.gitlab-ci.yml
# Test reports
**/test-results/
**/jacoco/
2026-04-23 14:52:25 +01:00
test_*.pdf
2026-03-25 15:41:58 +00:00
# Testing and documentation (not needed in build)
testing/
docs/
2026-04-23 14:52:25 +01:00
devGuide/
devTools/
2026-03-25 15:41:58 +00:00
*.md
README*
2026-04-23 14:52:25 +01:00
# Separate projects not consumed by the Java/frontend build
commonforms-onnx/
# Runtime mount points used by docker-compose volumes, not build input
stirling/
customFiles/
configs/
# Claude Code workspace
.claude/
# Python caches
.pytest_cache/
.ruff_cache/
__pycache__/
**/__pycache__/
# Python virtualenvs. Large, platform-specific, and their symlinks break the build.
.venv/
**/.venv/
venv/
**/venv/
*.egg-info/
**/*.egg-info/
# Local env
.env
.env.*
!.env.example
!engine/.env
2026-03-25 15:41:58 +00:00
# Misc
*.swp
*.swo
*~
.DS_Store
.cache/