We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef1e98a commit 02c14b5Copy full SHA for 02c14b5
1 file changed
src/ledgermind/core/stores/audit_git.py
@@ -57,7 +57,7 @@ def initialize(self):
57
gitignore_path = os.path.join(self.repo_path, ".gitignore")
58
if not os.path.exists(gitignore_path):
59
with open(gitignore_path, "w", encoding="utf-8") as f:
60
- f.write("\n.lock\n.quarantine/\n.tx_backup/\n")
+ f.write("\n.lock\n.quarantine/\n.tx_backup/\n*.db\n*.db-wal\n*.db-shm\n")
61
62
self.run(["add", ".gitignore"])
63
self.run(["commit", "--quiet", "--allow-empty", "-m", "Initial commit"])
0 commit comments