Created
July 10, 2017 23:48
-
-
Save CollectiveHealth-gists/811999c452359b520ce2ad6502bb5824 to your computer and use it in GitHub Desktop.
Development and Deployment of AWS Lambda Functions:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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