Add Go module scaffold with dependencies and entrypoint

Initialize the publix-deals Go module (go 1.24.4) with core
dependencies: cobra for CLI structure, lipgloss for styled terminal
output, testify for assertions, and x/term for TTY detection.

The main entrypoint at cmd/pubcli/main.go delegates to cmd.Execute().
The .gitignore covers Go build artifacts, editor files, coverage
output, and jj VCS state.
This commit is contained in:
2026-02-22 21:12:19 -05:00
commit c4a8ddab4a
4 changed files with 136 additions and 0 deletions

7
cmd/pubcli/main.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "github.com/tayloree/publix-deals/cmd"
func main() {
cmd.Execute()
}