9 lines
225 B
Makefile
9 lines
225 B
Makefile
|
|
# Runs the 'templ generate` every time a file is updated and reloads the debugger
|
|
debug:
|
|
templ generate --watch --proxy="http://localhost:3000" --cmd="go run cmd/main.go"
|
|
|
|
# Generates templ files
|
|
gen:
|
|
templ generate
|