I am currently working on a project using React + Vite, where I’m using Clerk for user authentication and Appwrite as the database.
My goal is to store data only for users who are authenticated via Clerk. The project I’m building is frontend-only, and I want to make sure that only authenticated users can interact with the Appwrite database.
How can I implement this? Please explain in detail.
TL;DR
Developers wants to ensure only authenticated users can interact with Appwrite database in React + Vite project using Clerk for user authentication. Solution: Utilize Appwrite's built-in Auth rules to restrict database access to authenticated users only. This way, users need to be authenticated via Clerk before interacting with the Appwrite database.