Fester Bestertester
Fester Bestertester

Reputation: 593

Does Django CMS run on Google App Engine?

I've seen a few old threads on this topic, but they seemed quite outdated. So, I'm planning a CMS project. The requirements are:

As I'm both a Python and an App Engine newbie, I'd like to know about other people's experience beforehand. Is it possible to run Django CMS on App Engine? Does this work with a Vanilla install?

Upvotes: 1

Views: 829

Answers (1)

narko
narko

Reputation: 3875

Django is supported by GAE as you can see here: https://cloud.google.com/appengine/docs/python/cloud-sql/django. In fact, they even provide the library for you, so that you don't need to include it with your project during deployment. I didn't try Django CMS, but if the requirements are the same than those for Django, it will work.

Upvotes: 1

Related Questions