views:

39

answers:

2

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?

+4  A: 

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

Robert Kluin
A: 

You may be willing to also give a try to Jetbrain's PyCharm (30-day trial version is available).

Along with being a very nice and efficient IDE, it also brings out-of-the-box GAE targeted features.

Google App Engine Python Development

Develop applications for Google App Engine and delegate routine deployment tasks to the IDE. Create your app, run it and deploy it to the App Engine server without leaving PyCharm. Enjoy code completion and error highlighting in GQL queries and in YAML configuration files.

Em.