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
- Not allowed permission to upsert a prese...
```js const presenceID = ID.unique(); setPID(presenceID); const presence = await presences.upsert({ presenceId: presenceID, status: "online"...
- Can't really use the S3 storage device
hi, I've linked my local MinIO Instance (it's just for testing, not for prod.) to my appwrite instance, when i'm uploading a file it's getting uploaded to the S...
- Next.js SSR Site Times Out on First Visi...
Hey everyone, I'm running a Next.js SSR site on a self-hosted Appwrite server (v1.9.0), and I've noticed a strange behavior that I'm hoping someone can help me...