tb build

Builds your project and checks that all the resources are valid.

tb build

» Building project...
✓ datasources/events.datasource created
✓ endpoints/endpoint.pipe created

✓ Build completed in 0.2s

Difference with tb deployment create

While similar, tb build and tb deployment create have different purposes:

  • tb build command is a stateless command that checks that project datafiles are valid.
  • tb deployment create --check checks that you can successfully create the deployment.

For example, when updating a data project in a workspace, tb build checks that the new version of your project is valid, while tb deployment create --check verifies that you can successfully migrate from the old version to the new one.

Updated