1.0.4 • Published 7 years ago

lambda-deploy-cli v1.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

#lambda-deploy-cli A lightweight module that is configuration file based and removes as much boiler plate code as possible for deploying lambda functions to AWS.

usage

The source must be in ./src/

cli

lambda-deploy-cli --config deploy-config.json

package.json

  "scripts": {
    "deploy-test": "lambda-deploy-cli --config deploy-config.test.json",
    "deploy": "lambda-deploy-cli --config deploy-config.json"
  },

see sample/sample-config.json for a sample configuration file

{
    "functionName": "test-lambda-deploy",
    "config": "config.test.json",       // if omitted, no updates are made to the config file
    "outputConfig": "src/config.json",  // if omitted, no updates are made to the config file
    "aws": {
        "profile": "default",
        "region": "us-east-1"
    }
}

install

npm install --save-dev lambda-deploy-cli
1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago