Using the justfile

How to use the justfile to manage your Data Package.

The justfile contains scripts or “recipes” that are shorthands for performing common project tasks. You can get an overview of available recipes by running

just

in the project root directory.

You can run a recipe by typing

just <recipe-name>

A simple workflow would be running:

  1. just build repeatedly while working on a new feature to test that it’s working.
  2. just run-all before submitting your work for review to make sure all checks pass.