Files
stalwart-migrator/.gitignore
T
jcoffey-dev 5566eed1c8 Fix module path and restore cmd/ omitted by gitignore
Rename module github.com/johnellis/stalwart-migrator ->
github.com/LINUXexpert-org/stalwart-migrator to match the repository
location, so the module resolves under `go get`.

The initial commit's .gitignore listed the compiled binary as a bare
`stalwart-migrate` pattern, which Git matches at any depth -- so it also
excluded the cmd/stalwart-migrate/ source directory, and the initial
commit shipped without the CLI entrypoint. Anchor the pattern to the
repo root as /stalwart-migrate and add the four missing files.

go build, go vet, and go test ./... all pass.
2026-08-22 18:23:48 -07:00

27 lines
232 B
Plaintext

# Binaries
/bin/
/dist/
/stalwart-migrate
*.exe
# Test / coverage
*.out
*.test
# Local state & logs
*.log
*.db
*.db-journal
*.db-wal
*.db-shm
# Credentials / local config
.env
*.pem
*.key
# Editor / OS
.DS_Store
.idea/
.vscode/