SamYoungNY
SamYoungNY

Reputation: 6624

Is it too late to migrate Parse app to Parse server

I have the .json files from the Parse app in question. I never got to do the Migrate process as outlined in the image below:

enter image description here I did however manage to export my classes prior to Parse shutting down. Is it possible to import the classes into MongoDB and connect it to the Parse Server project (as described in many of the resources) or is it too late (having missed the opportunity to run the Parse-built processes show above?

Upvotes: 1

Views: 87

Answers (2)

Jake T.
Jake T.

Reputation: 4378

As Julien stated, you won't be able to retrieve your files, nor any data that isn't in your exports. However, you most certainly can import data into mongoDB using .JSON files.

What you'll want to do is follow the parse-server setup guide as if you're setting up a new parse-server instead of migrating. When you get it running, go to your dashboard and create all of your classes with their schema. Then, go to your Mongo instance and find the import commands. Import all your .jSON files for each class. You should be good to go, aside from those files.

Upvotes: 1

Julien Kode
Julien Kode

Reputation: 5479

If your files was on parse.com you can't retrieve your files.

I'm sorry for you 🙁

You can see this post

Upvotes: 0

Related Questions