Justfile

Create a justfile to orchestrate project tasks. Use when setting up task running for a project.

gkwa ec50643 2 files · 1009 B Updated

File contents

Create a justfile to orchestrate project tasks.

The justfile must include at least these rules:

  • default — list all rules using just --list
  • setup — do the main work
  • test — (optional) run tests
  • teardown — clean up artifacts created by setup

Keep the justfile simple and clear about what to run.

Inline bash is acceptable within the justfile. If a task requires more than ~10 commands, extract it into a separate bash script and have the justfile call that script instead.

gkwa/volcanicviper/tree/main/skills/justfile commit ec5064384f

Frequently asked questions

npx skillmds@latest add gkwa/justfile