Has anyone had luck deploying NocoDB to Google Cloud App Engine as a Node app?
I am quite close. It works great on my local machine, but it does not work when I deploy it to GCloud. I see a response in my browser “Cannot GET /dashboard”
Details:
The Node app and the NocoDB Database are part of the same Google Cloud project. Here’s how I currently specify the database to use as an environmental variable in app.yaml:
env_variables:
NC_DB: ‘pg://[DATABASE INSTANCE PUBLIC IP]]?u=[MYUSER]&p=[MYPASSWORD]]&d=[DATABASE NAME]’
I believe I may need to specify the NocoDB database in a format different from the instance’s public IP address. But stuck here.
Would appreciate any help from the team. Thank you!