Quick Start
This guide walks you through creating and running your first Orvanta workflow from scratch.
Prerequisites: An Orvanta account (cloud or self-hosted) and the Orvanta CLI installed. See Installation if you haven’t done that yet.
-
Connect a workspace
Terminal window orvanta workspace addAdd a workspace profile using a token from User Settings → Tokens. See Installation.
-
Initialise a project
Terminal window orvanta initThis sets up a local project directory and sync configuration.
-
Create a script
Terminal window orvanta script new f/demo/hello bashEdit the generated file to print a greeting:
#!/usr/bin/env bashecho "Hello from Orvanta!" -
Run it
Terminal window orvanta script run f/demo/helloYou should see
Hello from Orvanta!in the output. -
Deploy to the workspace
Terminal window orvanta sync pushYour script is now in the workspace, where you can wire it into a flow in the editor.
-
Inspect jobs
Terminal window orvanta job listorvanta job logs <id>
What next?
Section titled “What next?”- Concepts: Workflows: Understand how workflows are structured.
- CLI Reference: Explore all available commands.
- Approval steps: Add a human approval step to sensitive workflows.