Reputation: 55
I am trying to export and import my database from parse server into / from to xls and csv files. I am using bitnami Parse server with dashboard 1.0.25. Where ever i search it either states Parse has been closed or this functionality is not there on parse server. My question is is there any way to do it without of much hassle thank you and should i keep on using Parse server as it is open source or switch to another as mentioned on many website that many developers are moving to other databases such as mongodb or Firebase etc.
Thank you for your replies.
Upvotes: 1
Views: 1325
Reputation: 1803
In the shell use mongodump
or psql yourdatabasename < db.psql
in case of postgres.
Upvotes: 0
Reputation: 1075
just call the data from server in your model and export it locally. Why you want to export files on server.
Upvotes: 1