Loading...
Loading...
Reference for `just`, the command runner. Use when working in a project with a `justfile` or when the user mentions `just` or `justfile`.
npx skill4agent add casey/just justjust --dumpjust --evaluatejust --helpjust --listjust --show <RECIPE>just --summaryjustjust <RECIPE>just <RECIPE> <ARG1> <ARG2executable := 'main'
# compile main.c
compile:
cc main.c -o {{ executable }}
# run main
run: compile
./{{ executable }}
# run test
test name: compile
./bin/test {{ name }}
# start webserver
serve port='8080':
python -m http.server {{port}}
# publish current tag
publish:
#!/usr/bin/env bash
set -euxo pipefail
tag=`git describe --tags --exact-match`
./bin/check-tag $tag
git push origin $tagjust --list#!just