- .gitignore had bare 'out/' matching source directories; changed to '/out/' - All 45 files under trueref-domain/port/out and trueref-adapters/.../out were silently excluded from the initial commit - Added .dockerignore to exclude data/, runtime/, logs/ from build context
34 lines
493 B
Plaintext
34 lines
493 B
Plaintext
# Runtime data — large and machine-specific, never needed in the image
|
|
data/
|
|
data-onnx-smoke/
|
|
logs/
|
|
|
|
# cuDNN and other native runtime libraries (823 MB)
|
|
runtime/
|
|
|
|
# Build outputs (the Dockerfile re-builds from source)
|
|
**/target/
|
|
**/build/
|
|
trueref-frontend/web/node_modules/
|
|
trueref-frontend/web/.svelte-kit/
|
|
|
|
# Git and IDE metadata
|
|
.git/
|
|
.gitignore
|
|
.gitea/
|
|
.vscode/
|
|
.idea/
|
|
|
|
# JVM crash dumps
|
|
hs_err_pid*.log
|
|
core.*
|
|
|
|
# Tests
|
|
tests/
|
|
|
|
# Docs
|
|
ARCHITECTURE.md
|
|
CODE_STYLE.md
|
|
FINDINGS.md
|
|
README.md
|