Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Latest commit

 

History

History
12 lines (10 loc) · 530 Bytes

readme.md

File metadata and controls

12 lines (10 loc) · 530 Bytes

Steps to get going:

node import.js
// mongo console commands:
use restaurantgrade-dev
db.restaurants.createIndex( { geoloc : "2dsphere" } )
// verify geospacial query
db.restaurants.find({"geoloc":{$near:{$geometry:{type:"Point", coordinates:[-115.07877499999998, 36.097976]}, $maxDistance:1500}}})

Scaffolded with angular-fullstack generator
https://github.com/DaftMonk/generator-angular-fullstack Refer to docs to scaffold additional endpoints, routes, controllers, factories, etc.