cli/cmd/Taskfile.yml

14 lines
376 B
YAML
Raw Normal View History

2025-10-27 05:07:22 +00:00
version: '3'
tasks:
build:
summary: Builds the core executable
cmds:
- go build -o {{.TASKFILE_DIR}}/../bin/core {{.TASKFILE_DIR}}/..
2025-10-27 05:07:22 +00:00
build:dev:
summary: Builds and runs the core executable in development mode
cmds:
- go build -o {{.TASKFILE_DIR}}/../bin/core {{.TASKFILE_DIR}}/..
- CORE_DEV_TOOLS="false" {{.TASKFILE_DIR}}/../bin/core