This is my first Django deployment, on Google App Engine flexible.
After deployment, all static content is rendered correctly, but as soon as the request hits an ORM code, it fails (server error 503). I'm using PostgreSQL and I think I link it correctly on my settings.py and app.yaml
DB_HOST: '/cloudsql/my-app:us-central1:my-app-postgresql'.
DB_NAME: 'my-db' ...
Do I need to know anything special about the deployment of Django PostgreSQL to App Engine? During the deployment, all tables and data will be recreated, right?
Finally, I deploy with DEBUG = True
and see ProgrammingError at / the "my-app_my-app" relationship does not exist.
How do I export all my database to Google Cloud SQL database?
Based on this, it's look like i will not able to use ORM. Do i have to use "Django Nonrel" ?