Deploy your Django project on Google App Engine

I developed one example project in django1.4 and python 2.7, I want to deploy it on the Google engine, but how to configure my project in accordance with the App Engine, which we did not receive.

We have a website powered by Google, but it includes all html, js.

How do we set up a database in Google App Engine to deploy our django project?

+4
source share
1 answer

Perhaps the best option is to use Django Non-Rel. This is the only way (I know) to use the Django ORM (django database interface) in the Google App Engine without using the costly Google Cloud SQL Services service. To do this, you need to use a custom version of Django and import some more libraries. This is a small project to get it up and running, but it's worth the effort. More information can be found on this website:

http://django-nonrel.org/

Note that even if django-nonrel allows you to use the Django database interface, it will not allow you to use certain SQL functions, such as joins. If you need connections, the best option would be to use Google App Engine + Google Cloud SQL. The documentation for this is here .

Regarding comments:

  • Yes, it can work on Windows, I run it on Windows.
  • In addition, allbuttonspressed.com is out of date and use the one above for information.
+2
source

All Articles