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