Skip to main content
After installing the Versori CLI, follow these steps to authenticate and start managing your resources.
1

Generate a JWT for the CLI

Generate a JWT token from the Versori console for the organisation you want to manage.
2

Add a context

A context stores your authentication credentials for an organisation. You need a JWT token generated from the Versori console for the organisation you want to manage.
versori context add \
  --name my-context \
  --organisation <organisation-id> \
  --jwt <jwt-token>
Pass in --jwt - to read the JWT from stdin.
3

Verify your context

Confirm the context was created and is active:
versori context list
4

Run your first command

List the projects in your organisation:
versori projects list

Next steps