fix: taskfile

This commit is contained in:
2026-02-19 13:44:32 -05:00
parent d47552faf2
commit a87b0e74e7

View File

@@ -3,11 +3,23 @@ version: "3"
method: checksum method: checksum
vars: vars:
# Go binary
GO_CMD: GO_CMD:
sh: command -v go >/dev/null 2>&1 && echo "go" sh: command -v go >/dev/null 2>&1 && echo "go"
# Go build flags
GO_FLAGS: '-ldflags="-s -w"' GO_FLAGS: '-ldflags="-s -w"'
# Server binary name
SERVER_BINARY: server
# Frontend binary name
FRONTEND_BINARY: frontend
# File extension
EXT: "{{ if eq .OS "windows" }}.exe{{ end }}"
# Tailwind binary
TAILWIND_CMD: "tailwindcss" TAILWIND_CMD: "tailwindcss"
tasks: tasks: