0

I have problem with uploading mirorapi quick-start to App Engine. Currently I can run locally, but I don't know how to upload it to appengine. Based on this book, I have to upload with appcfg.sh: enter image description here

Because I'm using windows, so I run it with cmd. But when I executed this command:

appcfg.sh update C:...\mirror-quickstart-java-master\mirror-quickstart-java-master

The system ask me to open application. I really don't know which application that I can choose. Anybody knows how to upload to appengine? Thank You

eng
  • 83
  • 1
  • 9

1 Answers1

1

The "appcfg.sh" command will only work on Linux and Mac OS terminals. For Windows, try running this:

appengine-java-sdk\bin\appcfg.cmd update <war file location>

Moving forward, you can use this webpage as your reference in deploying to App Engine: https://developers.google.com/appengine/docs/java/tools/uploadinganapp

Hope this helps...

Koh
  • 1,570
  • 1
  • 8
  • 6