Files
Archivum/.gitignore
brasse b 2bc544ccae fix: Dockerfile no longer requires go.sum to exist before first build
Removed go.sum from the COPY cache layer — go mod download -x creates it
when absent. Added empty backend/go.sum for local tooling (gopls, go build).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-10 13:17:37 +02:00

34 lines
461 B
Plaintext

# Go
backend/vendor/
backend/*.exe
backend/*.test
backend/archivum
# Frontend
frontend/node_modules/
frontend/dist/
frontend/.env
frontend/.env.local
# Docker local data
docker/data/
# Generated GraphQL code
backend/internal/graph/generated.go
backend/internal/graph/models_gen.go
# Config (never commit secrets)
config.json
settings.json
*.db
# go.sum is intentionally committed once populated by go mod tidy
# OS
.DS_Store
Thumbs.db
# IDE
.idea/
*.swp