I am bit confused how to implement Appwrite with my own Backend... I want a single point of entry and Appwrite should handle all the user/session/permission stuff... but because I have to communicate with a PLC I have to have my own Backend... so my question is how should an architecture look like? I drew a little possible solution? maybe you can tell me what is the best practice for my needs 🙂 Also I have to know how calls my PLC (Permission stuff) so the user has to be authenticated :X Also I need realtime updates from my PLC so the user has to see that :X
I would do first one: backend to appwrite and appwrite to app
You can use the API rest to connect the backend to Appwrite and send data to it
And then the Appwrite flutter SDK to connect appwrite to the flutter app
The second one I think will make Appwrite useless? Since if you connect the flutter app to your own backend instead of Appwrite, then the backend will be the one that handles all permissions, etc?
do you have an example how do this? I could not find any example how this should work... or maybe I did not get that 😄
What do you want the example about, API?
Recommended threads
- Local appwrite run functions --user-id n...
Hi, I'm running into an issue when testing Appwrite functions locally with user impersonation. I'm using a self-hosted Appwrite instance and running functions ...
- Impossible to get USER after createEmail...
Am using provider to deal with functions linked to appwrite. Here is my login. Future<String?> login(String email, String password) async { try { aw...
- Selfhosted Github App installation
I've followed this guide: https://appwrite.io/docs/advanced/self-hosting/configuration/version-control to connect GitHub to my self-hosted Appwrite instance (1....