Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,14 @@ i18n.cache
# Python (apps/pii tests/tooling)
__pycache__/
.pytest_cache/

# Local file-upload spill directory. `UPLOAD_DIR_SERVER` is
# `join(process.cwd(), 'uploads')`, so it follows the cwd rather than a fixed
# root: under `turbo run test` the cwd is apps/sim and `apps/sim/.gitignore`'s
# `/uploads` catches it, but running vitest from the repo root drops ~40
# `uploads/execution/**/large-value-*.json` files here instead.
#
# Anchored deliberately. An unanchored `uploads/` would also match
# `apps/sim/lib/uploads/` — 61 files of tracked source — and silently ignore
# anything added there later.
/uploads
Loading