Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. # Truncate data in ShopItems collection
  4. mongo shop --host localhost:27017 --username xxx --password xxx --authenticationDatabase admin \
  5. --eval 'db.getCollection("ShopItems").remove({})'
  6.  
  7. # Import seed data into ShopItems collection
  8. mongoimport --host localhost:27017 --username xxx --password xxx --authenticationDatabase admin \
  9. --db shop --collection ShopItems --type JSON --file ShopItems.json
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement