Skip to content

Commit

Permalink
Merge pull request #8 from muzzammilshahid/add-make-target
Browse files Browse the repository at this point in the history
Add make targets to build and run http-service
  • Loading branch information
muzzammilshahid authored Oct 3, 2024
2 parents dda3917 + 112f8c4 commit 19cd8b0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
lint:
golangci-lint run

test:
go test -count=1 ./... -v

build-http:
go build github.com/xconnio/wireguard-admin-service/cmd/http-service

run-http:
go run github.com/xconnio/wireguard-admin-service/cmd/http-service

0 comments on commit 19cd8b0

Please sign in to comment.