Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django 1.1 on Google App Engine

I am trying to get Django 1.1 working on Google App Engine. I followed instructions but, they didn't work.

I get this error message:

ImportError: Could not import settings 'settings' (Is it on sys.path? Does it have syntax errors?): No module named settings

I bet Nick Johnson has the answer!

like image 910
Drew LeSueur Avatar asked Sep 15 '09 01:09

Drew LeSueur


People also ask

Does Google support Django?

You can deploy a PostgreSQL or MySQL database that's managed and scaled by Google, and supported by Django. You can deploy Django with a Cloud Spanner backend using the python-spanner-django database backend.

Can a Django app run on Android?

Django server is mostly run on computers but when you want to make your Django project responsive and do various testing. Then using mobile can be proved as an advantage. Here we will try to learn how we can deploy our website on our phones.


1 Answers

Someone named moraes on the #appengine channel of freenode helped me find the answer

All you have to do is put a empty 'settings.py' file in your root directory.

like image 160
Drew LeSueur Avatar answered Sep 30 '22 19:09

Drew LeSueur