Building 2 separate apps and having them communicate with each other (Telemedicine app patient and physicians side)

Hi everyone! I am building a telemedicine app using Glide but I ran into a little problem. I am building 2 apps one for physicians and one for patients. I’m having problems making the apps communicate with each other; I wasn’t able to create one app and have the users and physicians on the same app. Can someone help me or advice on how I can go about solving my issue. Thanks!

1 Like

The recommended approach here would be to have both Apps share the same data source.

1 Like

I’m new to this space how do I go about having both apps share the same data source. Thank you!

The easiest way is to start building your first App, and once you get it to a certain point, then duplicate it. At that point Glide will prompt you to either “Copy the sheet” or “Keep same sheet”. If you choose the latter, then both Apps will be sharing the same data source.

It’s also possible to start your second App from scratch and connect it to the same data source as your first App. However, I would recommend the “build one then copy” approach over this, as when you copy an existing App will will get all the screens and computed columns that were created in the first App. So you wouldn’t be starting with a blank slate.

I gave a longer answer to a similar question below:

3 Likes

It’s important to note, as I recently learned, when you create a Page from an existing data source, you get all the computed columns. But if you add any computed columns to the Pages, they will not be reflected on the App side, and any computed columns added to the App later will not be added on the Pages side.

The same situation exists with a copied App that shares the data source. If you add a computed column in one App and you need it in the other, you will have to add it to the other App as well.

2 Likes

Yes, I covered this point in detail in my linked post.

2 Likes

Doh! I didn’t read your linked post in detail!

1 Like

Thank you!