Following other stackoverflow posts, I'm able to export my local database into my app folder (located at dump/meteor).
Then, I've re-deployed, using mup, to my server. No problems there.
I then log onto my server, enter the mongo shell, and dump the old database (called tapshop) using db.dropDatabase(). show dbs
confirmed it's present but empty.
Then, after exiting the mongo shell, I try mongorestore --db tapshop dump/meteor
and get the following message:
connected to: 127.0.0.1
don't know what to do with file [dump/meteor]
I know I'm missing something in that mongorestore command, but what?