Added default alerts, updated UI to show alerts with checks, added auto sync for manual file editing

This commit is contained in:
2026-05-14 00:25:43 +00:00
parent bd437f49e4
commit 1dc3ad1215
9 changed files with 282 additions and 21 deletions
+6
View File
@@ -195,6 +195,12 @@ func (d *Daemon) Run(ctx context.Context) error {
d.scheduler.Start(ctx)
}()
d.wg.Add(1)
go func() {
defer d.wg.Done()
d.watchManualEdits(ctx)
}()
select {
case <-ctx.Done():
case err := <-servErr: