Parse Server Self Hosting

Team,

We are migrating our project from Moralis 1.0 server from existing Moralis Sleep
We created a parse-server using


We are about to deploy it to production through EKS/ECS, Once we are done deploying, do we need to do something else?

We basically followed article as it is.
Does it need some tweakings for our self host to work?

Hi @IamRohit

If you have successfully run it locally without any errors, then it will work as same after deploying. You can follow the documentation here.

Thank you @johnversus
but question is
I currently followed exactly the article,
In real, Would I have to make changes to my react or Node project?
or article itself will be same for each project with changing moralis API?

The process shown in the docs for setting up the parse server will be same for all projects. Based on the server features like cloud code, streams…, you will have to update your code as required.

You will add the new server url and appId in your client app and make changes to the authentication code, as self-hosted server uses auth api. You can find the authentication logic here.

If you were using Moralis syncs then you have to include the streams and set up the streams endpoint. Docs for it is available here.

If you are using cloud functions you need to define the cloud functions in the parse server. Docs for it is available here