Skip to content

Commit

Permalink
Add clean target to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
funnyzak committed Feb 21, 2024
1 parent 8a07833 commit 8da2ec3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ dev:
@echo "Starting development service..."
@go run cmd/main.go

.PHONY: clean
clean:
@echo "Cleaning up..."
@rm -rf ./release ./dist ./db ./logs ./upload ./cmd/db ./cmd/upload ./cmd/logs
@echo "Cleaned up."

.PHONY: deps
deps:
@echo "Installing dependencies..."
Expand Down

0 comments on commit 8da2ec3

Please sign in to comment.