Merge pull request #9939 from bigcat88/dev_man-fix-intro-errors

This commit is contained in:
John Molakvoæ 2023-03-31 10:59:21 +02:00 committed by GitHub
commit ce562c4d5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: