Skizit
Skizit

Reputation: 44842

Deploying to app engine without eclipse?

I've got a python app and I want to deploy it. I'm using Aptana Studio 3. It's based on Eclipse but will not install the plugin due to dependancy issues. Basically I'm wondering what are my options for deploying my app outside of Eclipse?

Upvotes: 2

Views: 411

Answers (1)

Robert Kluin
Robert Kluin

Reputation: 8292

Just use the appcfg tool included with the GAE SDK.

appcfg.py update path_to_app

http://code.google.com/appengine/docs/python/tools/uploadinganapp.html#Uploading_the_App

Upvotes: 6

Related Questions