feat: whatsapp-mcp-go

This commit is contained in:
iamatulsingh
2026-02-21 21:12:14 +01:00
commit dd5e347436
35 changed files with 4159 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
VERSION ?= 0.0.1
all: install build
install:
go get ./...
build:
go build
run:
go run main.go
tidy:
go mod tidy
test:
go test ./...
image:
docker buildx build --platform linux/amd64,linux/arm64 -t venomdarklord/wa:v$(VERSION) --push .
deployment:
kubectl apply -k ./manifests