Skip to content

Commit

Permalink
Merge pull request #655 from garysheppardjr/patch-1
Browse files Browse the repository at this point in the history
Corrected link to config-template.js
  • Loading branch information
tomwayson authored Feb 26, 2020
2 parents ab7f7a2 + 42dd64c commit 8a2daac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demos/batch-geocoder-node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

1. Make sure you run `npm run bootstrap` in the root folder to setup the dependencies
2. Create and register a [new application](https://developers.arcgis.com/documentation/core-concepts/security-and-authentication/accessing-arcgis-online-services/).
3. Replace values in [config-template.js](/demos/batch-geocoder/config-template.js) and rename to `config.js`
3. Replace values in [config-template.js](/demos/batch-geocoder-node/config-template.js) and rename to `config.js`
1. `"clientId"`: ArcGIS ClientId
2. `"clientSecret"`: ArcGIS ClientSecret
3. `"csv"`: csv path
Expand Down
2 changes: 1 addition & 1 deletion demos/batch-geocoder-node/batch-geocode.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const fs = require('fs');
const Papa = require('papaparse');
const { ApplicationSession } = require('@esri/arcgis-rest-auth');
const { bulkGeocode } = require('@esri/arcgis-rest-geocoding');
const config = require('./config');
const config = require('./config-template');

// FUNCTIONS!

Expand Down

0 comments on commit 8a2daac

Please sign in to comment.