Files
nebula/Makefile

17 lines
186 B
Makefile
Raw Permalink Normal View History

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