Skip to content

Commit

Permalink
Merge pull request #8 from koopjs/f/aggegration
Browse files Browse the repository at this point in the history
feat: add aggregation handling
  • Loading branch information
rgwozdz authored Oct 30, 2023
2 parents ca0c0e1 + b93ee8d commit 9379f05
Show file tree
Hide file tree
Showing 17 changed files with 4,458 additions and 1,292 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
wildfires.json
.DS_Store

# Logs
logs
Expand Down
14 changes: 13 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@
"console": "integratedTerminal",
"outputCapture": "console"
},
{
"type": "node",
"request": "launch",
"name": "Launch Tester",
"cwd": "${workspaceFolder}/demo",
"program": "tester.js",
"console": "integratedTerminal",
"outputCapture": "console"
},
{
"name": "Debug Jest Tests",
"type": "node",
Expand All @@ -26,7 +35,10 @@
],
"console": "integratedTerminal",
"outputCapture": "console",
"runtimeExecutable": "/usr/local/bin/node",
"env": {
"SUPPRESS_CONFIG_WARNINGS": "true",
}
//"runtimeExecutable": "/usr/local/bin/node",
}
]
}
17 changes: 17 additions & 0 deletions config/default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"mongodb": {
"connectString": "mongodb://localhost:27017",
"definedCollectionsOnly": true,
"databases": {
"sample-data": {
"fires": {
"geometryField": "location",
"idField": "_id",
"cacheTtl": 0,
"crs": 4326,
"maxRecordCount": 2000
}
}
}
}
}
1 change: 1 addition & 0 deletions config/test.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Loading

0 comments on commit 9379f05

Please sign in to comment.