Introduction
Since 2015, tens of thousands of DroneDeploy users have mapped more than 310 million acres in various different industries. Our API allows outside developers to build apps directly into the DroneDeploy user interface.
Once a user installs an app it will run on DroneDeploy.com, Android and iOS DroneDeploy apps. All apps are written in HTML, CSS, and JavaScript. Apps have the capability to access and modify DroneDeploy features. Additionally, any JavaScript framework or library can be used to develop an app.
How to Quickly Get Started
Ensure you have a DroneDeploy API key to begin development
We use the serverless platform for deployment. You will need to install this globally
Download a simple example or full example of an app template and unzip the folder.
Add a
package.json
file to folder like this:Add a
serverless.yml
file to the same folder like this (for a full list of available app zones see here):From the command line inside the folder run
npm install
to install dependenciesConfigure the command line to log into DroneDeploy using your API key
Agree to the Developer Agreement and turn on "Developer Mode".
To deploy your app for testing from the command line inside your app's directory:
Create your app (this will populate the
app
field inserverless.yml
)sls deploy app --name "my app name"
Deploy/update your app's files (this will upload your files to DroneDeploy and make your app's code visible in the app zones specified in
serverless.yml
)sls deploy app version
Review our documentation to use our "Getting Started UI Kit" components and other tools for quick UI development.
Lastly, start developing on top of the starter template.
Hint: Open the javascript console to view the dronedeployApi.
Last updated