
I am using appwrite cloud for developement and I have exceed the rate limit which is just 10 for an hour for authentication? Is there any way to overcome this. Atleast for dev purpose there should be a option to disable rate limit ig.

I think you won't be able to change that on the cloud,

The best workaround would be running a local Appwrite with version that match cloud version, as such:
docker run -it --rm \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
--entrypoint="install" \
appwrite/appwrite:1.1.2
You can see other installation methods here https://appwrite.io/docs/self-hosting#unix
Just be sure to replace the version number 1.3.4
with 1.1.2

sure, thanks
Recommended threads
- login backend and frontend
I'm using Remix, as my Backend (node). and react on my frontend. Until now, i did SSR login. saved the secret.. and it's fine. For many simpler requests i wish...
- Stuck in Readonly Mode After Pro Subscri...
Hello team, I really need some urgent help. I recently resubscribed to the Pro plan hoping to get back into a project I created a while ago, but I'm still unab...
- Missing C++ libstdc library in Python fu...
I have a function running Python 3.12 which suddenly started dumping errors (as of today; it worked yesterday). I hadn't changed any code so I found this odd, b...
