1👍
✅
You seem to be quite far off from getting your django based app running on GAE. For example you’re missing the lib
dir where your version of django should be installed. You may want to go through Running Django on App Engine standard environment
0👍
Take a look of GAE log page and search text “raise”. If you see something like “sqlite3”, the problem might be caused by the default content of DATABASES section in settings.py file. Commenting out this DATABASES section solved my problem(“Error: Server Error” only when deployed to GAE; working fine locally).
Source:stackexchange.com