#Signals
A service that provides updates to current content in streaming services.
##Install
Make sure you have the Serverless Framework installed and you're using Node.js v4.0+.
npm install serverless -g
Install the project using Serverless:
serverless project install signals
Install project dependencies via npm:
npm install
Deploy your functions and endpoints:
serverless dash deploy
##Includes
This project contains the following:
- Multi: Multiple functions each containing a single endpoint
- Single: A single function that uses multiple endpoints.
- Optimizer Plugin: Each function is automatically optimized via the serverless-optimizer-plugin
- Templates: Templates are used to reduce configuraton syntax
- REST API Parameters: The Multi/Show function endpoint gives an example of how to accept a path parameter
##Setup
npm install serverless -g
serverless project install serverless-starter
- Create Github repo for new function
- Edit README.md and other configuration with new repo information
git remote add origin https://github.com/{ACCOUNT}/{REPO}.git
git add {CHANGED_OR_NEW_FILES}
git commit -m {MESSAGE}
git push -u origin master