Skip to main content

Upload your code

The rootsdk upload command deploys your code to the Root cloud. You must provide the package file path and a valid authentication token. You get your authentication token from the Root Developer Portal.

Installation

Include the tool in your project by adding the following to your package.json:

{
"devDependencies": {
"@rootsdk/dev-tools": "*"
}
}

Usage

npx rootsdk upload package [options]

Options

OptionRequiredDefaultDescription
-f, --file <file>YesPath to the package file to upload.
-a, --authToken <token>YesAuthentication token passed inline.

Examples

npx rootsdk upload package \
--file ./dist/rootapp-1-2-3.pkg \
--authToken $TOKEN