CLI


Start development server

rivet dev
Command Line

This will automatically restart when files change.


Run tests

rivet test
Command Line

To automatically rerun tests when files change, run:

rivet test --watch
Command Line

To test a specific file:

rivet test foo
Command Line

Creating modules & scripts

Create module:

rivet create module foo
Command Line

Create script:

rivet create script foo bar
Command Line

Help

All commands are documented in the CLI:

rivet --help
rivet create --help
Command Line