Chitrank Dixit
Chitrank Dixit

Reputation: 4051

Django 1.5.1 support from Google App Engine

I am planning to make a large site and want to host it on Google App Engine using Django 1.5.1 web framework. But as I searched around the Internet I did not found any positive response about my question.

Reasons for Using Django 1.5.1-

My Questions are:

Upvotes: 1

Views: 1242

Answers (1)

dragonx
dragonx

Reputation: 15143

Provided you are using Cloud SQL as your backend and not the datastore, you should be able to use your own Django. You might need to do some work in tweaking the database settings.

App Engine provides up to django 1.4, so you can use that if you don't want to install your own.

If you want to use the datastore, you'll have to use django-nonrel. I believe there is an experimental branch that's up to 1.5 if not 1.5.1

Upvotes: 2

Related Questions