Skip to main content

ReSolve Cloud CLI

reSolve Cloud CLI is a console tool that allows you to deploy an application to the cloud and manage the deployed application's functionality.

Install ReSolve CLoud CLIā€‹

ReSolve Cloud CLI is available on NPM. You can install it as shown below:

yarn global add resolve-cloud

Usageā€‹

Use the following console inputs to log into the reSolve Cloud Platform and deploy an application:

yarn create resolve-app resolve-app
cd resolve-app
<develop your app locally>
resolve-cloud login
resolve-cloud deploy

The platform assigns a unique ID to an application's deployment. You can use this ID to view information about the deployment or change the deployment's settings:

resolve-cloud describe <deploymentId>
resolve-cloud logs get <deploymentId>
resolve-cloud read-models list <deploymentId>
resolve-cloud remove <deploymentId>

View Helpā€‹

Use the --help option to view embedded help on the CLI or its commands:

resolve-cloud --help
resolve-cloud deploy --help