backupy-agent/.gitignore
TronoSfera cc96a0b773 fix: include apps/agent/internal/state package (gitignore was eating it)
The .gitignore rule "state/" was unanchored, so git also ignored
apps/agent/internal/state/ — the BoltDB-backed queue persistence
package. CI build failed with:
  internal/queue/queue.go:13:2: no required module provides package
  github.com/backupy/backupy/apps/agent/internal/state

Anchored the rule to repo root (/state/, /var/) so it only matches
the runtime data directory, never a Go package.
2026-05-17 20:26:04 +03:00

32 lines
374 B
Text

# Go build artifacts
*.test
*.out
/bin/
/dist/
/build/
apps/agent/bin/
# IDE
.idea/
.vscode/
.DS_Store
*.swp
# Local secrets / runtime
.env
.env.local
.env.*.local
*.pem
!*.pub.key
secrets/
# Logs
*.log
logs/
# Runtime state (BoltDB queue files). Anchored to repo root so the
# pattern does NOT shadow the apps/agent/internal/state Go package.
/state/
/var/
*.db
*.bolt