[b9e282]: / internal / README_justfile.md

Download this file

25 lines (21 with data), 1.1 kB

To get started, first download just. You can use Homebrew on OS X & Linux:

brew install just

Once you have just, you need to run the just setup command once before you can run any other command.
Thus, if it's your first time, you will need to do this first:

just setup
just <command you want to run>

You can see all of the commands for the development cycle by running just. These commands are executable as
just X for each command X listed:

build-dev              # Builds the development image.
build-release          # Builds the release image.
run-dev cmd='bash'     # Runs an interactive program in the development bionemo image.
run-release cmd='bash' # Runs an interactive program in the release bionemo image.
setup                  # Checks for installed programs (docker, git, etc.), their versions, and grabs the latest cache image.
test                   # Executes pytest in the release image.

You can combine just commands together. For example, run just build-dev build-release to build both images.