Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 1.1 KB

File metadata and controls

47 lines (34 loc) · 1.1 KB
id cloud-cli
title 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