Philipp Tsipman asked
Philipp Tsipman replied
Thank you! Iâm closer.
Google App Engine connects to SQL via Unix Sockets rather than TCP. So, I switched to a Knex JSON file format to write out the full host. Like this:
app.yaml
env_variables:
NC_DB_JSON_FILE: â./dbconnect.jsonâ
dbconnect.json
{
âclientâ: âpgâ,
âconnectionâ: {
âhostâ : â/cloudsql/project:region:instanceâ,
âuserâ : âmy_userâ,
âpasswordâ : âmy_passwordâ,
âdatabaseâ : âdb_nameâ
}
}
(Source: Manage database connections | Cloud SQL for PostgreSQL | Google Cloud)
Now, I can log in and can see my NocoDB project and tables. Yay.
However, none of the table data is showing. Every table times out.
To be continuedâŚ
Philipp Tsipman replied