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
justin the project root directory.
You can run a recipe by typing
just <recipe-name>A simple workflow would be running:
just buildrepeatedly while working on a new feature to test that it’s working.just run-allbefore submitting your work for review to make sure all checks pass.