Skip to content

Latest commit

 

History

History
69 lines (40 loc) · 1.75 KB

README.md

File metadata and controls

69 lines (40 loc) · 1.75 KB

Firebase HTTPS receiver for Lightbug API quickstart

Introduction

The function lbListener is created to receive HTTP POST messages from LB API.

The URL of this function would be something like https://us-central1-AAAA-BBBBB.cloudfunctions.net/lbListener

This URL should be used as the endpoint for an API Push in the Lightbug Cloud.

Further reading

Initial setup, build tools and dependencies

1. Clone this repo

Clone or download this repo and navigate into the directory

2. Install the Firebase CLI and enable Functions on your Firebase CLI

You need to have installed the Firebase CLI. If you haven't run:

npm install -g firebase-tools

Login to firebase (if not already done) using

firebase login

3. Create a Firebase project and configure the quickstart

Create a Firebase Project on the Firebase Console.

Set up your Firebase project by running firebase use --add, select your Project ID and follow the instructions.

Deploy the app

First you need to install the npm dependencies of the functions:

cd functions
npm install
cd ..

And deploy to Firebase using the following command:

firebase deploy

This deploys and activates the lbListener Function.

Note: The first time you call firebase deploy on a new project with functions, it will take longer than usual

View results

The example will create collections under /incoming - view data there

License

© Lightbug Ltd, 2020. Licensed under an MIT license.