orvanta script
Manage scripts in your workspace. Scripts are addressed by path (e.g. f/folder/my_script for a folder-owned script, or u/user/my_script for a user-owned one) and stored locally as source files (.ts, .js, .py, .sh, …).
orvanta script <subcommand> [options]Subcommands
Section titled “Subcommands”Create a new script for a given language.
orvanta script new f/demo/hello pythonList all scripts in the workspace.
orvanta script list [--json]Run a script by path.
orvanta script run f/demo/hello --data '{"name": "Ada"}'Inputs are passed with -d/--data as a JSON string, @<filename>, or @- for stdin.
preview
Section titled “preview”Run a local script without deploying it, which is handy while developing.
orvanta script preview f/demo/hello --data '{"name": "Ada"}'Push a local script, overriding the remote version.
orvanta script push f/demo/hello.py(You’ll usually deploy several items at once with orvanta sync push.)
get / show
Section titled “get / show”Show a script’s details or content.
orvanta script get f/demo/hellohistory
Section titled “history”Show version history for a script.
orvanta script history f/demo/helloRelated
Section titled “Related”- Concepts: Scripts
- Flows: Compose scripts into flows.
- Sync: Deploy many items at once.