From fc32c09fa42456561dc18224f0967bdfd1ad27e2 Mon Sep 17 00:00:00 2001 From: Zeni Kim Date: Thu, 24 Oct 2024 17:08:22 -0500 Subject: [PATCH] add sqlite to ignore watcher --- cmd/run.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/run.go b/cmd/run.go index 0ffd9a0..74f9325 100644 --- a/cmd/run.go +++ b/cmd/run.go @@ -45,6 +45,8 @@ goffee run:dev w.Ignore( pwd+"/logs/app.log", pwd+"/tmp", + pwd+"/.git", + pwd+"/storage/sqlite", ) w.FilterOps(watcher.Rename, watcher.Move, watcher.Create, watcher.Write) if err := w.AddRecursive(pwd); err != nil {