From 68bc1821dae839f813b64a97a9a3269765a6d99c Mon Sep 17 00:00:00 2001 From: Richan Fongdasen Date: Mon, 29 Apr 2024 12:11:54 +0700 Subject: [PATCH] Update readme --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fefee12..57245da 100644 --- a/README.md +++ b/README.md @@ -58,8 +58,13 @@ The content of the `config/turso-laravel.php` file should look like this: ```php return [ + 'client' => [ + 'connect_timeout' => env('TURSO_CONNECT_TIMEOUT', 2), + 'timeout' => env('TURSO_REQUEST_TIMEOUT', 5), + ], + 'sync_command' => [ - 'node_path' => env('NODE_PATH'), + 'node_path' => env('NODE_PATH'), // Full path to the node executable. E.g: /usr/bin/node 'script_filename' => 'turso-sync.mjs', 'script_path' => realpath(__DIR__ . '/..'), 'timeout' => 60,