Skip to main content
The Virtus Cloud CLI exposes a rich set of commands for deploying applications, managing their lifecycle, and authenticating your session. Every command follows the pattern virtuscloud COMMAND [flags]. This page documents all available commands with their exact syntax and expected terminal output so you always know what to expect.

Primary Commands

Primary commands operate at the account and project level. Use them to authenticate, package your project, and upload it to Virtus Cloud.
Print a summary of all available commands and global flags.
virtuscloud help
Output
A command line application to manage your VirtusCloud applications

Usage:
  virtuscloud COMMAND [flags]
  virtuscloud [command]

Available Commands:
  app         Do some actions with your applications
  auth        Manage your authentication with VirtusCloud
  backup      Manage your backups
  commit      Commit your application to VirtusCloud
  help        Help about any command
  upload      Upload your application to VirtusCloud
  zip         Zip the current folder

Flags:
  -h, --help      help for virtuscloud
  -v, --version   Print CLI version

Use "virtuscloud [command] --help" for more information about a command.

App Commands

App commands let you manage the full lifecycle of your deployed applications — from listing and monitoring to starting, stopping, and deleting them.
Print the help menu for the app subcommand group, showing all available sub-commands.
virtuscloud app
Output
Do some actions with your applications

Usage:
  virtuscloud app [flags]
  virtuscloud app [command]

Available Commands:
  backup      Create a backup of you application
  commit      Commit your application to VirtusCloud
  delete      Delete your application
  list        List all your applications
  logs        See your application logs
  restart     Restart your application
  start       Start your application
  status      Show the status of your application
  stop        Stop your application
  upload      Upload your application to VirtusCloud

Flags:
  -h, --help   help for app

Use "virtuscloud app [command] --help" for more information about a command.

Getting Help for Any Command

Every command supports the -h / --help flag. Run it at any level to see the full usage details for that command:
virtuscloud app --help
virtuscloud auth --help
virtuscloud upload --help