# Run the application run: go run ./cmd # Build the application binary into a bin/ folder build: go build -o bin/website ./cmd @echo "Project built in bin directory" # Clean up binaries and build artifacts clean: rm -rf bin/ @echo "Build artifacts removed."