Parse recently announced it's shutting down its service. This Parse server tutorial explains how to migrate to Parse Server, an open source alternative.
Why have two apps in the dashboard config? As I have it set up below, my ālocalā dashboard actually updates the mongo DB on the server. The āherokuā dashboard is empty⦠probably because I donāt have the correct serverURL.
@ ranapnm
If you cloned your app and backed up your data in Parse before migrating to ObjectRocket, then you can repeat the process described in this tutorial for mLab. If you did not clone/back up your app on Parse before migrating, Iām not sure.
@kschlagel Currently there is no āone-clickā solution to transfer your images yet. You could transfer the images yourself by writing a script that should be fairly simple, e.g. simply loading and storing your images will store them on the new destination. That destination is your Parse Serverās mondoDB file system by default or a 3rd party storage provider if you have set up a storage adapter with your Parse Server. However I expect the developer community to come up with an easy general solution to transfer from Parse.comās S3 storage to another one in a couple of months, for now everyone is focused on stabilizing the still young Parse Server.
@ranapnm Once your data is migrated off Parse.com is it not as easy anymore to migrate it to another database. Also it will be harder to do it without down-time for your users. You can dump the data from the current database and import it into your new database. Then in your Parse.com dashboard update the database connection string in āApp Settings > General > Change connection stringā so that the Parse.com API endpoint redirects to the new database on mLab. That will result in a down-time for your app until the process is completed. There are a number of things to consider so I recommend you are trying this process with dummy data first. The guys at mLab are super helpful, so ask them in case you get stuck - data export / import wise.
āNow that youāve wired it up, you need to test if the Parse Server is talking to the remote database. Remember to insert your Application ID from the Parse.com dashboard:ā
I had everything up until then work perfectly, what am I missing?
I did curl -X GET \, then -H "X-Parse-Application-Id: <myAppId>" \ with my App ID in the required spot, then -H "Content-Type: application/json" \ and -d '{}' \, then Iām not sure if Iām supposed to be replacing anything in this line http://localhost:1337/parse/classes/Player but everything Iāve tried so far has given me this error: ācurl: (7) Failed to connect to localhost port 1337: Connection refusedā.
Hey, every time I run the curl command I get {āerrorā:āunauthorized: master key is requiredā}. Iāve include my master key in the app delegate, index.js, and the command itself. Any Idea on what Iām doing wrong?
HI, thanks so much for the tutorial. Please I need some help.
After migrating the server to Heroku, and I type this command
$ curl -X GET
-H āX-Parse-Application-Id: ā
-H āContent-Type: application/jsonā
-d ā{}ā
https://.herokuapp.com/parse/classes/WallPost
, I received data from the remote server. However, my app does not receive any data. Please is there any configuration i need to do on Heroku for this to work?
Thanks for the great tutorial. I successfully migrated one of my Parse.com apps however Iām in need of some help. Apple recently rejected my app because the Parse.com API threw an error when āconnected via IPv6 wifiā. Do you know if Parse Server or Parse.com supports IPv6?
When I use the following tool: http://ready.chair6.net, both my Parse.com hosted address AND Heroku hosted address āfailsā IPv6. Otherwise, I donāt know how to get my app approved. Please help. Thank you!
Its not possible to send notifications from your App. You have to write a cloud code function that send these notifications and call this function on your App.
Hello - in the section āGetting Startedā, I am trying to run the Parse Starter project in Xcode. What is it expecting for username/password? When I supply my own valid Parse.com credentials, I get an āauthorization errorā. Any ideas for me? Thank you.