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
- Custom emails
What happen if I use a third party email provider to customize my emails and my plan run out of emails/month? Appwrite emails are used as fallback sending emai...
- SyntaxError: Unexpected end of JSON inpu...
I am trying to create a fcm push notification service using appwrite functions with its REST API to invoke that function from my client side app and getting thi...
- Experiencing inconsistent "500 general_u...
I am developing a task management app that uses Appwrite auth. My project is hosted on Appwrite cloud and I've created basic server-side authentication followin...