Getting Started

Prerequisites

  1. Create an account on DroneDeploy if you do not have one already.

  2. Request an API key by contacting support@dronedeploy.com if you do not already have one.

Sample App

To get you started, we have created a sample app. By deploying this sample app, you will learn to use every aspect of the DroneDeploy SDK.

Overview

The app you will be deploying will enable the following flow:

  1. A user creates an export

  2. When the export completes, an export complete Trigger will go off

  3. The Trigger will call out to your DroneDeploy Function

  4. The DroneDeploy Function will call to your IFTTT webhook endpoint

Installation

  1. You will need to have npm and node.js installed. Note that we currently support node.js 16 runtime.

  2. First clone the open-sourced app-examples repository

     $ git clone git@github.com:dronedeploy/app-examples.git
  3. We use the serverless platform for deployment. You will need to install this globally

     $ npm install -g serverless
  4. Navigate to the IFTTT example

     $ cd app-examples/IFTTT
  5. Install the dependencies. This will install the dronedeploy-cli, which is a development tool to make App Development much easier.

     $ npm install
  6. Add your API key to dronedeploy-cli

     $  serverless config dronedeploy-credentials --provider=dronedeploy --key=<YOUR API KEY>

App Deployment

  1. Navigate to the settings page and add the IFTTT/app directory to the App Zone

  2. Go to the App Market Installed Apps tab to see your new app listed. Go and change the name from app to IFTTT and copy the App ID.

  3. Press the "Deploy For Mobile Testing" button to checkpoint your app and to make the app available on mobile.

  4. Copy the App ID into your serverless.yml file in the app field

  5. Now you are ready to deploy the app with the following command

     $ serverless deploy

    Note that this will do the following:

    1. Deploy the defined ifttt-webhook Function

    2. Deploy the Export Complete Function Trigger

    3. Deploy the webhook-table Datastore table

      The deployment should look something like this:

  6. If everything went according to plan, you should now have a Datastore table, a DroneDeploy Function, and a Trigger definition!

IFTTT Setup

  1. Sign up for an IFTTT account if you do not have one already.

  2. Go to the IFTTT webhooks service page and activate it by pressing Connect, then generate a new webhook endpoint by going into the documentation page. Enter in dronedeploy as the event name and copy the webhook endpoint.

  3. The URL should look something like this

     https://maker.ifttt.com/trigger/dronedeploy/with/key/calBarcsa1DcqmSN9_D1acb
  4. Copy and paste your URL into your App UI and press save. This will save this URL by passing the URL string to the ifttt-webhook function, which will then save the URL to the defined webhook-table Datastore table. Try refreshing the page and opening the app - you will notice that your URL is still there and now persisted in your Datastore!

  5. Create an Applet on IFTTT using your new IFTTT webhook service as the trigger. Don't forget to select the Webhook at the service and set the event to dronedeploy. In this GIF, we are showing an Applet that emails you when a trigger fires. You can find more documentation about how to build an IFTTT Applet here.

  6. Now if you perform a DroneDeploy map export, you should get an event in IFTTT! When an event triggers, you will see that your IFTTT Applet ran under the activity tab.

Next Steps

Learn more about how to extend the sample app or build your own from scratch here.

Last updated