Skip to content

bgtdevhub/waze-lambda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

waze-lambda

AWS Lambda for Waze Feed to ArcGIS online

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

The app can be deploy as standalone NodeJS web app or as a AWS lambda function. To deploy to AWS Lambda, use Serverless

Installing

npm install

Credentials and Registering your App

For this code to work, you need to add and register an app in ArcGIS Online, add the correct redirect URI (e.g. http://localhost:8080), and add the client ID and secret to /routes/routes.js.

Finally, update /routes/routes.js to contain your client ID and secret (and portal URL if not ArcGIS Online):

const client_id = 'xx';
const client_secret = 'xx';

Update the feature server URL

const featureServerUrl = 'xx';

Deploy to AWS Lambda

sls deploy

Running the Lambda function offline

sls offline start

To run as a NodeJS app

Comment out the Serverless handle and uncomment the local server part in /index.js

// module.exports.handler = serverless(app);

// USE THIS FOR LOCAL SERVER
var server = app.listen(3000, function() {
  console.log('app running on port.', server.address().port);
});

Authors

  • Jenning Ho - Initial work

License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published