2026-02-24 21:06:32 +01:00
|
|
|
# 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
|
|
|
|
2026-02-24 21:06:32 +01:00
|
|
|
# Build outputs
|
|
|
|
|
build/
|
|
|
|
|
*/build/
|
|
|
|
|
**/build/
|
|
|
|
|
out/
|
|
|
|
|
target/
|
2026-03-25 15:41:58 +00:00
|
|
|
**/target/
|
|
|
|
|
bin/
|
|
|
|
|
version_builds/
|
2026-02-24 21:06:32 +01:00
|
|
|
|
|
|
|
|
# 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/
|
2026-02-24 21:06:32 +01:00
|
|
|
|
|
|
|
|
# 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/
|
2026-02-24 21:06:32 +01:00
|
|
|
.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
|
|
|
|
2026-02-24 21:06:32 +01: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
|
2026-02-24 21:06:32 +01:00
|
|
|
*.iws
|
2025-11-14 13:02:45 +00:00
|
|
|
|
2026-02-24 21:06:32 +01:00
|
|
|
# Logs and temp files
|
2025-11-14 13:02:45 +00:00
|
|
|
*.log
|
2026-02-24 21:06:32 +01:00
|
|
|
*.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
|
|
|
|
2026-02-24 21:06:32 +01:00
|
|
|
# Docker itself
|
|
|
|
|
Dockerfile*
|
2025-11-14 13:02:45 +00:00
|
|
|
.dockerignore
|
|
|
|
|
|
2026-02-24 21:06:32 +01:00
|
|
|
# CI / CD configs (not needed in build context)
|
|
|
|
|
.github/
|
|
|
|
|
.circleci/
|
2025-11-14 13:02:45 +00:00
|
|
|
.gitlab-ci.yml
|
2026-02-24 21:06:32 +01:00
|
|
|
|
|
|
|
|
# Test reports
|
|
|
|
|
**/test-results/
|
|
|
|
|
**/jacoco/
|
2026-04-23 14:52:25 +01:00
|
|
|
test_*.pdf
|
2026-02-24 21:06:32 +01:00
|
|
|
|
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__/
|
|
|
|
|
|
2026-08-24 16:23:55 +00:00
|
|
|
# Python virtualenvs. Large, platform-specific, and their symlinks break the build.
|
|
|
|
|
.venv/
|
|
|
|
|
**/.venv/
|
|
|
|
|
venv/
|
|
|
|
|
**/venv/
|
|
|
|
|
*.egg-info/
|
|
|
|
|
**/*.egg-info/
|
|
|
|
|
|
2026-02-24 21:06:32 +01:00
|
|
|
# Local env
|
|
|
|
|
.env
|
|
|
|
|
.env.*
|
|
|
|
|
!.env.example
|
2026-04-21 16:18:25 +01:00
|
|
|
!engine/.env
|
2026-03-25 15:41:58 +00:00
|
|
|
|
|
|
|
|
# Misc
|
|
|
|
|
*.swp
|
|
|
|
|
*.swo
|
|
|
|
|
*~
|
|
|
|
|
.DS_Store
|
|
|
|
|
.cache/
|