1# Variables
2ENV_FILE = .env
3GO_CMD = CGO_ENABLED=1 GOOS=linux go
4
5# Build the Feedgen Go binary
6build:
7 @echo "Building Feed Generator Go binary..."
8 $(GO_CMD) build -o feedgen cmd/*.go
9
10up:
11 @echo "Starting Go Feed Generator..."
12 docker compose -f docker-compose.yml up --build -d