6 lines
286 B
Bash
6 lines
286 B
Bash
#!/usr/bin/env bash
|
|
|
|
mongoimport --db entities --collection cars --type json --file cars.json --jsonArray
|
|
mongoimport --db entities --collection trafficLights --type json --file traffic_lights.json --jsonArray
|
|
|
|
mongo --eval 'db.trafficLights.ensureIndex({location:"2dsphere"})' entities |