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
- execution failed
When executing an appwrite function, I'm getting a 500 error, but I don't see it in executions. This issue appeared today. Here's the appwrite function ID: 68b4...
- How to use appwrite types
I am using appwrite types --language ts ./types to generate the types yielding something like: ``` import type { Models } from 'node-appwrite'; // This file i...
- Dynamic Roles
I tried to store a row with this permissions: permissions.push( Permission.read(Role.users("verified")), Permission.write(Role.label(`c-${calend...