Has anyone been able to get Google App Engine/Django working in Pydev/Eclipse? I tried this but had difficulty getting Pydev to recognize all of the externally linked folders (django plugins) that I was referencing. I ended up copying all of those folders into the project en masse, rather than referencing them, resulting in a massively bloated project folder - it was really an unworkable solution that eventually made me give up the whole project. So, I'm wondering if anyone has tried this or has any idea what I might have been doing wrong. (Keep in mind this was my first attempt at using Pydev, Django, App Engine and Python!!)
|
8
|
|
|
|
|
|
I haven't personally set it up but i did see this tutorial on how to do it: |
||||||
|
|
|
I've just started with Python and the Google App Engine today. I think we both banged our heads against the same wall with external referencing. I've tried deploying the google-app-engine-django project for my app. I've extracted everything and I have under my root the /appengine_django and /django folder. I've added them as source folders, and I've added the /google_appengine/google folder as an external reference. Normally, this all made sense to me. Each contained the __ init __.py module. Still, when I tried to ctr+click on any of the import statements it couldn't resolve the path to the modules. Strikingly, you do not import the immediate folder that contains an __ init __.py. To properly reference packages you import the parent folder that contains the package duh! That also means that, since I didn't want to use a /src folder, the actual project folder should be added as a source reference to get the /appengine_django and /django to be recognized as source folders. With that done, everything is running smoothly. I guess it's to show I have more reading up to do on Py. |
||
|
|
|
|
This tutorial shows how to configure Aptana (with PyDev installed) to be your coding and debugging platform for AppEngine. Similarly you can add Django libraries to Aptana too. http://www.alishabdar.com/2009/05/06/develop-google-appengine-with-aptana-studio/ |
||
|
|
|
Pydev 1.4.6 (still only available in the nightly builds) has some special support to easy in the configuration. See: http://pydev.blogspot.com/2009/05/testing-on-pydev-146-google-app-engine.html |
||
|
|
|
|
I found this tutorial, its a bit old, but I'll give it a go and update when I've seen if it work. |
||
|
