Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ main
cover.out
config.yml
concom
.config
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,13 @@ test: ## Run tests
$(WARN) "Tests failed"; \
exit 1; \
fi ; \
$(OK) Tests passed
$(OK) Tests passed


build: ## Build the project
@mkdir -p dist
@go build -o dist/concom main.go

run: ## Run the project
@go run main.go agent --config ./.config/config.yaml

Loading
Loading