mirror of
https://github.com/itme-brain/agent-team.git
synced 2026-05-08 11:40:12 -04:00
21 lines
248 B
Makefile
21 lines
248 B
Makefile
set shell := ["bash", "-eu", "-o", "pipefail", "-c"]
|
|
|
|
default: help
|
|
|
|
help:
|
|
@just --list
|
|
|
|
validate:
|
|
nix run .#validate
|
|
|
|
build:
|
|
nix run .#build
|
|
|
|
check:
|
|
nix run .#check
|
|
|
|
install:
|
|
nix run .#install
|
|
|
|
clean:
|
|
rm -rf settings.json claude codex
|