summaryrefslogtreecommitdiff
path: root/Magefile.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-22 19:17:57 +0200
committerPaul Buetow <paul@buetow.org>2026-02-22 19:17:57 +0200
commitd629558394465b8956285edac324d67688ddd2c1 (patch)
treef511cf1ea87d916c11e85243361c366ae9843cd4 /Magefile.go
parent48280e828bc4737a91ed556226f7fdcb52679f87 (diff)
Rename binary from geheim to foostore
- go.mod: module path codeberg.org/snonux/geheim → codeberg.org/snonux/foostore - cmd/geheim/ → cmd/foostore/ - Magefile.go: binary/binaryName/mainPkg constants updated - internal/config: config file path ~/.config/geheim.json → ~/.config/foostore.json - All import paths and comments updated throughout - Delete geheim.rb (the original Ruby implementation, superseded by this Go rewrite) - CLAUDE.md rewritten to reflect the Go implementation, new binary name, build system (mage), and current package architecture Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'Magefile.go')
-rw-r--r--Magefile.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/Magefile.go b/Magefile.go
index 91631f0..571593b 100644
--- a/Magefile.go
+++ b/Magefile.go
@@ -16,9 +16,9 @@ import (
)
const (
- binary = "./bin/geheim"
- binaryName = "geheim"
- mainPkg = "./cmd/geheim"
+ binary = "./bin/foostore"
+ binaryName = "foostore"
+ mainPkg = "./cmd/foostore"
)
// Default builds the binary so that a bare `mage` invocation is equivalent to `mage build`.