mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
- chore: use vite preprocessor for Cypress Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
20 lines
366 B
PHP
20 lines
366 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
$CONFIG = [
|
|
'apps_paths' => [
|
|
[
|
|
'path' => '/var/www/html/apps',
|
|
'url' => '/apps',
|
|
'writable' => false,
|
|
],
|
|
[
|
|
'path' => '/var/www/html/apps-cypress',
|
|
'url' => '/apps-cypress',
|
|
'writable' => true,
|
|
],
|
|
],
|
|
];
|