Files
hway/Taskfile.yml
2025-01-06 14:44:28 -05:00

24 lines
328 B
YAML

# https://taskfile.dev
version: "3"
tasks:
build:
cmds:
- go build -o ./bin/hway ./cmd/hway
sqlc-gen:
dir: internal
cmds:
- sqlc generate
silent: true
templ-gen:
cmds:
- templ generate
silent: true
pkl-gen:
cmds:
- pkl-gen-go internal/pkl/App.pkl
silent: true