abdou
abdou

Reputation: 53

How to export data (entire database) from a meteor deployed app to another meteor app with a diffrent address?

I deployed a meteor app with like address xxx.meteor.com; now, I want to export all the database of this app to another meteor app with a different address www.xxxx.com.

How is it possible?

Upvotes: 0

Views: 150

Answers (1)

phunktrain
phunktrain

Reputation: 61

You can use mongodump and mongorestore commands to do this.

A tutorial can be found here

Upvotes: 1

Related Questions