Use the integrated terminal in your editor or the RBS command palette:
Copy
Ask AI
# Build a single targetrbs build hello# Run itrbs run hello# Build the entire dependency chainrbs build full_build# See all available targetsrbs workspace
Every command runs on your dedicated RBS server — not on your local machine. Builds are fast, hermetic, and reproducible regardless of your laptop’s specs.
config_setting(key = "project_name", value = "python-demo")load("@rbs//python/toolchain.rbs", "python_toolchain")# RBS manages the Python toolchain on the serverpython_toolchain(name = "python", version = "3.11.0")
RBS provisions one server per active branch. When a teammate opens the same branch, they connect to the same server and see the same build state.
Copy
Ask AI
main branch → RBS Server A (CI workers auto-deployed)feature/auth → RBS Server B (you + 2 teammates working)feature/payments → RBS Server C (your branch, fresh server)
All CI workers, schedulers, and build workers are deployed automatically when the server starts. No pipeline configuration needed.