diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,2 +1,10 @@ +.PHONY: setconfig run lint + +run: setconfig + go build -o elefant && ./elefant + +setconfig: + find config.toml &>/dev/null || cp config.example.toml config.toml + lint: ## Run linters. Use make install-linters first. golangci-lint run -c .golangci.yml ./... |