mirror of
https://github.com/TronoSfera/backupy-agent.git
synced 2026-05-18 18:13:30 +03:00
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.
32 lines
374 B
Text
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
|