Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions .claude/settings.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"permissions": {
"allow": [
"Bash(git fetch *)",
"Bash(git log *)"
]
}
}
26 changes: 26 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Build artifacts — never needed inside the container build context.
# Without this exclusion, `COPY . .` in docker/lightcycle.Dockerfile
# tars the entire target/ tree (multi-GB) and ships it to the BuildKit
# daemon before any RUN line executes — minutes of wasted I/O and
# context-cache invalidation on every source edit.
target/

# Git internals — the Dockerfile doesn't run any `git` commands, so the
# repo history adds nothing. .git can be tens of MB of pack files.
.git/

# CI + local tooling — not used by the build.
.github/
.claude/
.envrc
.direnv/

# Test outputs / scratch.
*.profraw
*.profdata
coverage/

# OS / editor cruft.
.DS_Store
*.swp
*.swo
Loading