After thinking quite a while about how to make a fast and scalable web application, I am almost decided to go for a combination of Google App Engine, Python+Django, and app-engine-patch. But I came across a comment in the app-engine-patch FAQ that made me think that perhaps the combination is not quite as mature as I thought: it may take...
I have a Django app (on Google App Engine) that I wish to internationalize.
settings.py:
USE_I18N = True
LANGUAGE_CODE = 'en'
# Restrict supported languages (and JS media generation)
LANGUAGES = (
('en', 'English'),
('fr', 'French'),
)
MIDDLEWARE_CLASSES = (
'ragendja.middleware.ErrorMiddleware',
'django.contrib.sessions.midd...
I have installed Google App Engine patch and I get the following error when I want to sync the DB
Command on command prompt on windows
manage.py syncdb
The Google App Engine SDK could not be found!Visit http://code.google.com/p/app-engine- patch/ for installation instructions.
I have installed win32api too and it still recurs. a...