mirror of
https://github.com/harivansh-afk/agentikube.git
synced 2026-04-15 05:02:07 +00:00
init
This commit is contained in:
commit
0595d93c49
28 changed files with 1763 additions and 0 deletions
18
Makefile
Normal file
18
Makefile
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
.PHONY: build install clean fmt vet lint
|
||||
|
||||
build:
|
||||
go build -o agentikube ./cmd/agentikube
|
||||
|
||||
install:
|
||||
go install ./cmd/agentikube
|
||||
|
||||
clean:
|
||||
rm -f agentikube
|
||||
|
||||
fmt:
|
||||
go fmt ./...
|
||||
|
||||
vet:
|
||||
go vet ./...
|
||||
|
||||
lint: fmt vet
|
||||
Loading…
Add table
Add a link
Reference in a new issue