user3798827
user3798827

Reputation: 25

How to deploy an application on cluster using appscale?

I'm trying to run a GoogleAppEngine Application on my laptop using AppScale. I was following the instructions in this link , and all goes just fine until the deployment part.

appscale deploy ~/path-to-your-app

I dont know what path i have to put. The directory that contain my application is on my desktop. so i did

vagrant@precise64:~$ appscale deploy /Users/Mac/Desktop/MyApp
/Users/Mac/Desktop/MyApp is not a tar.gz file, a zip file, or a directory. Please try uploading either a tar.gz file, a zip file, or a directory.

But the virtual machine doesn't have access to it.

Upvotes: 1

Views: 208

Answers (1)

Navraj Chohan
Navraj Chohan

Reputation: 627

You must scp the application to the machine where the AppScale tools are located. Optionally there is a web interface to upload applications from the AppScale dashboard.

Upvotes: 3

Related Questions