Skip to content

Latest commit

 

History

History
136 lines (98 loc) · 2.53 KB

README.md

File metadata and controls

136 lines (98 loc) · 2.53 KB

lift

oclif Version Downloads/week License

Usage

$ npm install -g @mnapoli/lift
$ lift COMMAND
running command...
$ lift (-v|--version|version)
@mnapoli/lift/0.0.1 darwin-x64 node-v15.3.0
$ lift --help [COMMAND]
USAGE
  $ lift COMMAND
...

Commands

lift export

export the stack to a YAML CloudFormation template

USAGE
  $ lift export

EXAMPLE
  $ lift export
  AWSTemplateFormatVersion: '2010-09-09'
  ...

See code: src/commands/export.ts

lift help [COMMAND]

display help for lift

USAGE
  $ lift help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

lift permissions

export the IAM permissions

USAGE
  $ lift permissions

See code: src/commands/permissions.ts

lift remove

delete the deployed stack

USAGE
  $ lift remove

OPTIONS
  -f, --force  force the deletion

EXAMPLE
  $ lift delete
  Stack deleted.

See code: src/commands/remove.ts

lift status

Status of the stack

USAGE
  $ lift status

EXAMPLE
  $ lift status

See code: src/commands/status.ts

lift up

deploy the stack

USAGE
  $ lift up

See code: src/commands/up.ts

lift variables

export the environment variables

USAGE
  $ lift variables

See code: src/commands/variables.ts