.PHONY: run build test clean deps

# Run the application
run:
	go run main.go

# Build the application
build:
	go build -o backend main.go

# Run tests
test:
	go test ./...

# Clean build artifacts
clean:
	rm -f backend

# Download dependencies
deps:
	go mod download
	go mod tidy

# Install air for hot reload (optional)
install-air:
	go install github.com/cosmtrek/air@latest

