This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.geocoder = (ln, cb, key) => { | |
const { address, city, state } = ln; | |
const protocol = "https://"; | |
const url = address + "," + city + "," + state; | |
const api = "maps.googleapis.com/maps/api/geocode/json?address="; | |
var xhr = new XMLHttpRequest(); | |
xhr.onreadystatechange = function() { | |
if (xhr.readyState == XMLHttpRequest.DONE) { | |
const location = JSON.parse(xhr.responseText).results[0].geometry | |
.location; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Currently - We are working and branching off the develop branch. Merging into master and updating the build weekly. | |
More information needs to be added as we define our development process / cycle. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#mj-snowplow-enriched-dev | |
aws glue create-table --database-name snowplow_data --table-input ' | |
{ | |
"Name": "archive", | |
"Owner": "owner", | |
"Retention": 0, | |
"StorageDescriptor": { | |
"Columns": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#mj-snowplow-enriched-dev | |
#mj-snowplow-enriched | |
aws glue create-table --database-name snowplow_data --table-input ' | |
{ | |
"Name": "events", |