Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ bv-pages/

# Local backup files
prisma/backups/
.envrc
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

*.local.* does not match .env.local, and .env.test is still committable even though the other environment-specific .env.* files are already ignored. Since these files can hold the same local secrets as .envrc, can we widen the ignore rules to cover the remaining local env variants too while still keeping .env.example tracked?

Copy link
Copy Markdown
Collaborator Author

@wheeljackz wheeljackz Apr 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.envrc is the right addition here. Since this repo is using direnv, can we also ignore .direnv/ in the same change? That directory is generated by direnv tooling and can cache environment-derived state, so it is another easy place for local secrets to leak accidentally if it ever appears in the worktree.

Loading