# @autocloud/cli

> Configure and manage your AutoCloud generated infrastrucure

Latest version **0.0.1** (published 2020-02-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install @autocloud/cli
pnpm add @autocloud/cli
yarn add @autocloud/cli
bun add @autocloud/cli
```

Provides the command `autocloud`.

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2020-02-15 |
| First published | 2020-02-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >=8.0.0 |
| Dependencies | 19 |
| Unpacked size | 68.7 KB |
| Known vulnerabilities | 0 (+29 in 2 direct dependencies) |
| Install scripts | no |
| Author | AutoCloud |
| Maintainers | tyson_kunovsky, ckoning |
| Keywords | autocloud |

## Links

- npm: https://www.npmjs.com/package/@autocloud/cli
- Repository: https://gitlab.com/auto-cloud/infrastructure/cli
- Homepage: https://autocloud.dev
- npm.io page: https://npm.io/package/@autocloud/cli

## Dependencies (19)

- [rxjs](https://npm.io/package/rxjs.md) ^6.5.4
- [yaml](https://npm.io/package/yaml.md) ^1.7.2
- [axios](https://npm.io/package/axios.md) ^0.19.2
- [listr](https://npm.io/package/listr.md) ^0.14.3
- [tslib](https://npm.io/package/tslib.md) ^1.10.0
- [is-obj](https://npm.io/package/is-obj.md) ^2.0.0
- [dot-prop](https://npm.io/package/dot-prop.md) ^5.2.0
- [fs-extra](https://npm.io/package/fs-extra.md) ^8.1.0
- [inquirer](https://npm.io/package/inquirer.md) ^7.0.4
- [validator](https://npm.io/package/validator.md) ^12.2.0
- [@oclif/config](https://npm.io/package/@oclif/config.md) ^1.13.3
- [@oclif/errors](https://npm.io/package/@oclif/errors.md) ^1.2.2
- [@oclif/command](https://npm.io/package/@oclif/command.md) ^1.5.19
- [@oclif/plugin-help](https://npm.io/package/@oclif/plugin-help.md) ^2.2.3
- [@oclif/plugin-update](https://npm.io/package/@oclif/plugin-update.md) ^1.3.9
- [listr-silent-renderer](https://npm.io/package/listr-silent-renderer.md) ^1.1.1
- [@oclif/plugin-not-found](https://npm.io/package/@oclif/plugin-not-found.md) ^1.2.3
- [@oclif/plugin-autocomplete](https://npm.io/package/@oclif/plugin-autocomplete.md) ^0.1.5
- [@oclif/plugin-warn-if-update-available](https://npm.io/package/@oclif/plugin-warn-if-update-available.md) ^1.7.0

## Recent versions

- 0.0.1 (latest) — 2020-02-15

## README

autocloud
=========

Configure and manage your AutoCloud generated infrastrucure

[![oclif](https://img.shields.io/badge/cli-oclif-brightgreen.svg)](https://oclif.io)
[![Version](https://img.shields.io/npm/v/autocloud.svg)](https://npmjs.org/package/autocloud)
[![Downloads/week](https://img.shields.io/npm/dw/autocloud.svg)](https://npmjs.org/package/autocloud)
[![License](https://img.shields.io/npm/l/autocloud.svg)](https://github.com/infrastructure/autocloud/blob/master/package.json)

<!-- toc -->
* [Usage](#usage)
* [Commands](#commands)
<!-- tocstop -->
# Usage
<!-- usage -->
```sh-session
$ npm install -g @autocloud/cli
$ autocloud COMMAND
running command...
$ autocloud (-v|--version|version)
@autocloud/cli/0.0.1 darwin-x64 node-v13.6.0
$ autocloud --help [COMMAND]
USAGE
  $ autocloud COMMAND
...
```
<!-- usagestop -->
# Commands
<!-- commands -->
* [`autocloud autocomplete [SHELL]`](#autocloud-autocomplete-shell)
* [`autocloud help [COMMAND]`](#autocloud-help-command)
* [`autocloud login [HOST]`](#autocloud-login-host)
* [`autocloud logout [HOST]`](#autocloud-logout-host)
* [`autocloud update [CHANNEL]`](#autocloud-update-channel)

## `autocloud autocomplete [SHELL]`

display autocomplete installation instructions

```
USAGE
  $ autocloud autocomplete [SHELL]

ARGUMENTS
  SHELL  shell type

OPTIONS
  -r, --refresh-cache  Refresh cache (ignores displaying instructions)

EXAMPLES
  $ autocloud autocomplete
  $ autocloud autocomplete bash
  $ autocloud autocomplete zsh
  $ autocloud autocomplete --refresh-cache
```

_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v0.1.5/src/commands/autocomplete/index.ts)_

## `autocloud help [COMMAND]`

display help for autocloud

```
USAGE
  $ autocloud help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI
```

_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v2.2.3/src/commands/help.ts)_

## `autocloud login [HOST]`

Log into AutoCloud service

```
USAGE
  $ autocloud login [HOST]

ARGUMENTS
  HOST  [default: registry.autocloud.dev] AutoCloud service host

OPTIONS
  -a, --authenticator=authenticator  [default: auth.autocloud.dev] AutoCloud authentication server
  -h, --help                         show this help screen
  -o, --output=json|yaml             [default: yaml] output format
  -p, --password=password            AutoCloud password
  -u, --username=username            AutoCloud username

EXAMPLES
  $ autocloud login
  $ autocloud login registry.autocloud.dev
  $ autocloud login --username mbolton@initech.com
```

_See code: [src/commands/login.ts](https://gitlab.com/auto-cloud/infrastructure/cli/blob/v0.0.1/src/commands/login.ts)_

## `autocloud logout [HOST]`

Log out of AutoCloud service

```
USAGE
  $ autocloud logout [HOST]

ARGUMENTS
  HOST  AutoCloud service host

OPTIONS
  -c, --clean             Remove all settings, not just tokens
  -h, --help              show this help screen
  -o, --output=json|yaml  [default: yaml] output format

EXAMPLES
  $ autocloud logout
  $ autocloud logout --clean
  $ autocloud logout registry.autocloud.dev
  $ autocloud logout --clean registry.autocloud.dev
```

_See code: [src/commands/logout.ts](https://gitlab.com/auto-cloud/infrastructure/cli/blob/v0.0.1/src/commands/logout.ts)_

## `autocloud update [CHANNEL]`

update the autocloud CLI

```
USAGE
  $ autocloud update [CHANNEL]
```

_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/v1.3.9/src/commands/update.ts)_
<!-- commandsstop -->

---
_Source: https://npm.io/package/@autocloud/cli · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
