Last active
February 27, 2016 09:55
-
-
Save iMagdy/5519514 to your computer and use it in GitHub Desktop.
How to upload local db to meteor app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# How to upload local db to meteor: | |
# -h = host, -d = database name, -o = dump folder name | |
mongodump -h 127.0.0.1:3002 -d meteor -o meteor | |
# get meteor db url, username, and password | |
meteor mongo --url myapp.meteor.com | |
# -h = host, -d = database name (app domain), -p = password, meteor = the path to the dumped db folder name | |
mongorestore -u client -h production-db-a2.meteor.io.meteor.com:27017 -d myapp_meteor_com -p 'password' meteor/ |
notepad104
commented
Apr 22, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment