Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 727 Bytes

README.md

File metadata and controls

23 lines (13 loc) · 727 Bytes

lambda-tapfinder-api

An API that searches PhillyTapFinder and returns results as JSON.

This API is implemented as an AWS Lambda function. It was initially based heavily on the Express implementation.

Installing dependencies:

npm install

Packaging for deploy:

zip -r lambda-tapfinder-api . -i index.js "lib/*" "node_modules/*"

Configure AWS for API creation & deployment:

aws configure # Specify access key ID, access key secret, AWS region

Deploying:

aws lambda update-function-code --function-name lambda-tapfinder-api --zip-file fileb://lambda-tapfinder-api.zip