From e0927c0aa46bde674a1adb249c4b81d69a90ccae Mon Sep 17 00:00:00 2001 From: Alexander Piskun Date: Wed, 22 Mar 2023 12:45:48 +0300 Subject: [PATCH] Fixed three Unexpected indentations errors and 3 warnings. Signed-off-by: Alexander Piskun --- developer_manual/app_development/intro.rst | 27 +++++++++++----------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/developer_manual/app_development/intro.rst b/developer_manual/app_development/intro.rst index 6fde12b4f..22a13686b 100644 --- a/developer_manual/app_development/intro.rst +++ b/developer_manual/app_development/intro.rst @@ -22,20 +22,19 @@ Alternatively, if you would like to contribute to an existing app instead of cre You can then configure Nextcloud to run apps from this directory, by changing your `app_paths` system config in your `config.php` - 'apps_paths' => - array ( - 0 => - array ( - 'path' => '/var/www/html/apps', - 'url' => '/apps', - 'writable' => false, - ), - 1 => - array ( - 'path' => '/var/www/html/apps-extra', - 'url' => '/apps-extra', - 'writable' => false, - ), +.. code-block:: php + + 'apps_paths' => array ( + 0 => array ( + 'path' => '/var/www/html/apps', + 'url' => '/apps', + 'writable' => false, + ), + 1 => array ( + 'path' => '/var/www/html/apps-extra', + 'url' => '/apps-extra', + 'writable' => false, + ), ), Finally, clone the app to which you would like to contribute inside the `apps-extra` folder. For example: