all: gen start open gen: @templ generate build: @go build -o nebula ./cmd/server start: @go run ./cmd/server open: @open http://localhost:8080 .PHONY: gen build start open all