Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting up Django on Google App Engine for DataStore

How do I setup Django on Google App Engine to use DataStore? I did a bunch of searches and some seemed to point to something called django-nonrel. But I couldn't find anything that looked like a definitive guide up-to-date (dated around 2012-2013).

like image 567
user782220 Avatar asked Feb 18 '13 01:02

user782220


1 Answers

The djangae project seems to be what you're looking for. From their documentation:

Djangae (jan-gee) is a Django app that allows you to run Django applications on Google App Engine, including (if you want to) using Django's models with the App Engine Datastore as the underlying database.

It has a Database backend that supports AppEngine's Datastore, so you can use Django's ORM. In addition to Django's default fields, a number of other field types are added in the project.

You should consider the list of limitations carefully though.

like image 87
jaywhy13 Avatar answered Oct 20 '22 17:10

jaywhy13