Add files via upload

This commit is contained in:
Tomáš Dvořák
2025-05-27 08:56:21 +02:00
committed by GitHub
parent 7c1b422797
commit 7e119ab943
5 changed files with 471 additions and 476 deletions
+22 -22
View File
@@ -1,22 +1,22 @@
# Makefile for kontakt service
.PHONY: dev run build clean
PORT ?= 8081
BINARY_NAME := kontakt-service
BUILD_DIR := build
##@ Development
dev: ## Run in development mode
@echo "Starting kontakt service..."
@go run contact-scrape.go
run: build ## Run built binary
@$(BUILD_DIR)/$(BINARY_NAME)
build: ## Build the application
@echo "Building kontakt service..."
@go build -o $(BUILD_DIR)/$(BINARY_NAME) contact-scrape.go
clean: ## Clean build artifacts
@rm -rf $(BUILD_DIR)
@echo "Build artifacts removed"
# Makefile for kontakt service
.PHONY: dev run build clean
PORT ?= 8081
BINARY_NAME := kontakt-service
BUILD_DIR := build
##@ Development
dev: ## Run in development mode
@echo "Starting kontakt service..."
@go run contact-scrape.go
run: build ## Run built binary
@$(BUILD_DIR)/$(BINARY_NAME)
build: ## Build the application
@echo "Building kontakt service..."
@go build -o $(BUILD_DIR)/$(BINARY_NAME) contact-scrape.go
clean: ## Clean build artifacts
@rm -rf $(BUILD_DIR)
@echo "Build artifacts removed"