Django in AppEngine

11 years ago

It's as easy as following this article: http://code.google.com/appengine/articles/django.html. A couple of notes, though: - There is a maximum of 1000 files, so if you ship django with the app, strip it out of the non-essentials (the article mentions a few, but there are others you can get rid of);

- On the urls.py files you cannot put the name of the project (like project.app.views.index). Instead, start the references from the application name (app.views.index).