diff --git a/app/views/docs/functions.phtml b/app/views/docs/functions.phtml index 5b9af6bab..682e26db4 100644 --- a/app/views/docs/functions.phtml +++ b/app/views/docs/functions.phtml @@ -719,7 +719,7 @@ func main() async throws {
Appwrite Functions can be executed using Client or Server SDKs. Client SDKs must be authenticated with an account that has been granted execution permissions on the function's settings page. Server SDKs require an API key with the correct scopes.
-The Functions Service APIs are rate limited to 60 calls per minute per account when using a Client SDK. Learn more about rate limiting. The response size of a Cloud Function is limited to 1MB. Responses larger than 1MB should be handled using Appwrite's Databases or Storage service.
+The Functions Service APIs are rate limited to 60 calls per minute per account when using a Client SDK. Learn more about rate limiting. The response size of a Cloud Function is limited to 1MB. Responses larger than 1MB should be handled using Appwrite's Databases or Storage service.
Each execution has a default timeout of 15 seconds to prevent hanging functions from blocking resources. This timeout can be configured per function on a function's settings page or in appwrite.json for up to 900 seconds.
By default, the following runtimes are enabled: "node-16.0, php-8.0, python-3.9, ruby-3.0". To enable or disable runtimes, you can edit the _APP_FUNCTIONS_RUNTIMES environment variable.
By default, the following runtimes are enabled: node-16.0, php-8.0, python-3.9, ruby-3.0. To enable or disable runtimes, you can edit the _APP_FUNCTIONS_RUNTIMES environment variable.
X-Appwrite-JWT: [TOKEN]X-Appwrite-Response-Format: [VERSION-NUMBER]You can create account sessions with POST requests to the Account API. Sessions are persisted using secured cookies. You can learn more about session persistence in the Authentication Guide.
+You can create account sessions with POST requests to the Account API. Sessions are persisted using secured cookies. You can learn more about session persistence in the Authentication Guide.
The example below shows creating an account session with the Create Account Session with Email endpoint.
POST /v1/account/sessions/email HTTP/1.1
@@ -93,7 +93,7 @@ X-Appwrite-Key: [API_KEY]
JWT authentication is frequently used by server applications to act on behalf of a user. Users generate tokens using the Create JWT endpoint. When issuing requests authenticated with a JWT, Appwrite will treat the request like it is from the authenticated user.
+JWT authentication is frequently used by server applications to act on behalf of a user. Users generate tokens using the Create JWT endpoint. When issuing requests authenticated with a JWT, Appwrite will treat the request like it is from the authenticated user.
GET /v1/account HTTP/1.1
diff --git a/app/views/docs/storage.phtml b/app/views/docs/storage.phtml
index ce781ba43..62d4eee31 100644
--- a/app/views/docs/storage.phtml
+++ b/app/views/docs/storage.phtml
@@ -53,7 +53,7 @@
-You can learn more about storage buckets and APIs you can use to manage storage buckets from our Storage documentation. Now that we know how to create and configure buckets for our applications, let's look at how to manage files using the storage service.
+You can learn more about storage buckets and APIs you can use to manage storage buckets from our Storage documentation. Now that we know how to create and configure buckets for our applications, let's look at how to manage files using the storage service.
Create File