9 lines
188 B
Makefile
9 lines
188 B
Makefile
|
|
# Command to run and watch the Go application using Air
|
||
|
|
run-app:
|
||
|
|
air
|
||
|
|
|
||
|
|
run-gen:
|
||
|
|
go run ./tooling/astgen
|
||
|
|
|
||
|
|
watch-gen:
|
||
|
|
go run ./tooling/watch.go --command 'go run ./tooling/astgen'
|