"Unable to connect to the Parse API" is the error appeared on Debugger.

You need to setup Parse Server correctly. There is nothing special, just:
1) Install the MongoDB locally, if you haven't yet. Or use a online instance
2) Run Parse Server with npm start => before run the App
Just follow the instructions in the main page.
Same for me.. MongoDb installed, parse server is running, data imported..
UPDATE:
After everything restart issue was solved
Check the environment variable mongo_uri
Go to terminal and type env
In the list make sure there is no reference to any mongoDb uri. This is going to force the Parse Serve to use local MongoDB
Also check the Web Browser if you get access to http://localhost:8080/dashboard
On 9 Dec 2016, at 09:28, Grundmanis notifications@github.com wrote:
Same for me.. MongoDb installed, parse server is running, data imported..
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
Yeah, that was an issue with npm start. Got sorted out :)
I faced the same issue, try running the commands in the same order as mentioned in readme. Worked for me.
Most helpful comment
You need to setup Parse Server correctly. There is nothing special, just:
1) Install the MongoDB locally, if you haven't yet. Or use a online instance
2) Run Parse Server with
npm start=> before run the AppJust follow the instructions in the main page.