Skip to content

Commit

Permalink
Remove run cli from makefile until it's fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sayden committed Nov 19, 2024
1 parent 8d27bf3 commit 9ecd529
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
CLI_NAME = "counters"
SERVER_NAME = "counters-server"

schema-docs:
@echo "Generating schema documentation..."
go run utils/gen_schema.go
@echo "Schema documentation generated."

cli:
@echo "Building CLI..."
go build -o ~/go/bin/$(CLI_NAME) ./cmd
@echo "CLI built."

build-server:
@echo "Building Server..."
go build -o ~/go/bin/$(SERVER_NAME) ./server
@echo "Server built."

.PHONY: server
server:
@echo "Running Server..."
go run ./server

0 comments on commit 9ecd529

Please sign in to comment.