Hi @martinbrook,
I’m afraid that each App Server instance supports a single Anvil app, so sharing tables is not currently supported. I’d suggest one of two ways forward:
- Combine your code into a single app (perhaps via dependencies), so that they can be hosted together with the App Server
- If you’re keeping them separate, to access data from other App Server’s database, I would suggest connecting via
psycopg2
and using SQL access.