14 lines
124 B
Makefile
14 lines
124 B
Makefile
|
|
all: gen start open
|
|
|
|
gen:
|
|
@templ generate
|
|
|
|
start:
|
|
@go run main.go
|
|
|
|
open:
|
|
@open http://localhost:8080
|
|
|
|
.PHONY: gen start
|