Skip to content
/ lift Public

Expanding Serverless Framework beyond functions using the AWS CDK

License

Notifications You must be signed in to change notification settings

getlift/lift

Folders and files

NameName
Last commit message
Last commit date

Latest commit

761a6d6 · Dec 6, 2020

History

32 Commits
Dec 6, 2020
Dec 6, 2020
Aug 27, 2020
Dec 6, 2020
Aug 29, 2020
Aug 25, 2020
Aug 25, 2020
Sep 7, 2020
Aug 25, 2020
Aug 25, 2020
Aug 25, 2020
Dec 6, 2020
Aug 28, 2020
Dec 6, 2020
Dec 6, 2020
Aug 28, 2020
Dec 6, 2020
Dec 6, 2020
Aug 28, 2020
Aug 29, 2020
Aug 25, 2020

Repository files navigation

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