Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CollectiveHealth-gists/811999c452359b520ce2ad6502bb5824 to your computer and use it in GitHub Desktop.
Save CollectiveHealth-gists/811999c452359b520ce2ad6502bb5824 to your computer and use it in GitHub Desktop.
Development and Deployment of AWS Lambda Functions:
{
"name": "my-api",
"description": "API Lambda Functions",
"role": "arn:aws:iam::123456789023:role/lambda-api",
"runtime": "nodejs",
"handler": "main.handler",
"hooks": {
"build": "npm install && ../../node_modules/.bin/browserify --node -s default --exclude aws-sdk -o main.js index.js",
"clean": "rm -f main.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment