From f2a3369131e9cd9600f237dc2a07d7333da3b326 Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Sun, 27 Jul 2025 10:18:51 +0530 Subject: [PATCH] chore: use config.json --- .gitignore | 1 - app/config/variables.php | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 600a6aeb08..369aec6ff5 100644 --- a/.gitignore +++ b/.gitignore @@ -16,5 +16,4 @@ app/sdks dev/yasd_init.php .phpunit.result.cache Makefile -appwrite.json /.zed/ \ No newline at end of file diff --git a/app/config/variables.php b/app/config/variables.php index 2f9a5ab41a..71ed13a483 100644 --- a/app/config/variables.php +++ b/app/config/variables.php @@ -827,7 +827,7 @@ return [ ], [ 'name' => '_APP_FUNCTIONS_TIMEOUT', - 'description' => 'The maximum number of seconds allowed as a timeout value when creating a new function. The default value is 900 seconds. This is the global limit, timeout for individual functions are configured in the function\'s settings or in appwrite.json.', + 'description' => 'The maximum number of seconds allowed as a timeout value when creating a new function. The default value is 900 seconds. This is the global limit, timeout for individual functions are configured in the function\'s settings or in appwrite.config.json.', 'introduction' => '0.7.0', 'default' => '900', 'required' => false, @@ -1070,7 +1070,7 @@ return [ 'variables' => [ [ 'name' => '_APP_SITES_TIMEOUT', - 'description' => 'The maximum number of seconds allowed as a timeout value when creating a new site. The default value is 900 seconds. This is the global limit, timeout for individual functions are configured in the sites\'s settings or in appwrite.json.', + 'description' => 'The maximum number of seconds allowed as a timeout value when creating a new site. The default value is 900 seconds. This is the global limit, timeout for individual functions are configured in the sites\'s settings or in appwrite.config.json.', 'introduction' => '1.7.0', 'default' => '900', 'required' => false,