Why is my heroku application empty when I clone it (it must be parse-server)

I created a heroku application using the Deploy to heroku on this page https://github.com/ParsePlatform/parse-server-example

I can verify its launch by running code similar to the following, which returns the results in the terminal.

 curl -X GET \ -H "X-Parse-Application-Id: ********************" \ -H "X-Parse-Master-Key: *******************" \ http://MY-APP.herokuapp.com/parse/classes/Speech 

I want to update the cloud code, my understanding of how to do this is git to clone the application, make changes, commit, and then push it back.

But when I run heroku git:clone -a MY-APP , it gives me the following warning

 Cloning into 'MY-APP'... warning: You appear to have cloned an empty repository. Checking connectivity... done. 

And the MY-APP folder is empty.

What am I doing wrong?

Should he have something like that? Otherwise, the curl... command does not work?

Change This question and answer solved my problem. Apparently, this is a mistake with the hero. How can I host my own Parse server on Heroku using MongoDB?

+7
git heroku parse-server
source share
1 answer

Cloning the server and adding the remote hero manually:

 git clone https://github.com/parse-community/parse-server-example.git your-app-name cd your-app-name git remote add heroku https://git.heroku.com/your-app-name.git 
+5
source share

All Articles