No description
Find a file
github-actions[bot] 9c6cf3a852
Merge pull request #1283 from nextcloud/dependabot/npm_and_yarn/vue/tsconfig-0.9.0
Chore(deps-dev): Bump @vue/tsconfig from 0.5.1 to 0.9.0
2026-03-24 12:40:20 +00:00
.github ci: update all workflow templates from organization template repository 2026-03-19 08:31:50 +00:00
.tx [tx-robot] Update transifex configuration 2022-10-01 02:51:27 +00:00
appinfo feat: migrate to Vue 3 with Vite, upgrade @nextcloud/* packages, use Composition API 2026-03-24 13:32:55 +01:00
build-js fix(reuse): Fix faulty detection 2025-11-24 16:49:03 +01:00
css fix: use theming capabilities 2026-03-24 13:32:58 +01:00
img chore: Add SPDX header 2024-05-06 12:17:03 +02:00
js fix: use theming capabilities 2026-03-24 13:32:58 +01:00
l10n fix(l10n): Update translations from Transifex 2026-02-24 01:40:04 +00:00
lib fix: use theming capabilities 2026-03-24 13:32:58 +01:00
LICENSES feat: migrate to Vue 3 with Vite, upgrade @nextcloud/* packages, use Composition API 2026-03-24 13:32:55 +01:00
src fix: use theming capabilities 2026-03-24 13:32:58 +01:00
templates chore: Add SPDX header 2024-05-06 12:17:03 +02:00
tests fix: use theming capabilities 2026-03-24 13:32:58 +01:00
vendor-bin fix: update psalm 2026-03-24 13:32:58 +01:00
.gitattributes chore: Add SPDX header 2024-05-06 12:17:03 +02:00
.gitignore chore: Add SPDX header 2024-05-06 12:17:03 +02:00
.l10nignore Fix transifex sync 2019-11-25 15:35:20 +01:00
.php-cs-fixer.dist.php chore: Fix cs-fixer configuration 2026-03-03 08:54:16 +01:00
AUTHORS.md chore: Add SPDX header 2024-05-06 12:17:03 +02:00
composer.json chore: Remove post-update command for vendor-bin 2026-03-03 09:49:34 +01:00
composer.lock feat: migrate to Vue 3 with Vite, upgrade @nextcloud/* packages, use Composition API 2026-03-24 13:32:55 +01:00
COPYING initial checkin 2019-02-18 00:47:45 +01:00
eslint.config.js feat: migrate to Vue 3 with Vite, upgrade @nextcloud/* packages, use Composition API 2026-03-24 13:32:55 +01:00
Makefile chore: Add SPDX header 2024-05-06 12:17:03 +02:00
package-lock.json Chore(deps-dev): Bump @vue/tsconfig from 0.5.1 to 0.9.0 2026-03-24 12:38:38 +00:00
package.json Chore(deps-dev): Bump @vue/tsconfig from 0.5.1 to 0.9.0 2026-03-24 12:38:38 +00:00
psalm.xml fix: update psalm 2026-03-24 13:32:58 +01:00
README.md chore: Add SPDX header 2024-05-06 12:17:03 +02:00
REUSE.toml feat: migrate to Vue 3 with Vite, upgrade @nextcloud/* packages, use Composition API 2026-03-24 13:32:55 +01:00
stylelint.config.cjs feat: migrate to Vue 3 with Vite, upgrade @nextcloud/* packages, use Composition API 2026-03-24 13:32:55 +01:00
tsconfig.json feat: migrate to Vue 3 with Vite, upgrade @nextcloud/* packages, use Composition API 2026-03-24 13:32:55 +01:00
vite.config.ts feat: migrate to Vue 3 with Vite, upgrade @nextcloud/* packages, use Composition API 2026-03-24 13:32:55 +01:00

🔑 Privacy

REUSE status

The privacy center shows you where your data is stored and who can access it, either because you shared with them or because they are administrators.

Installation

This app is shipped and enabled by default in every Nextcloud instance starting with Nextcloud 16. If you wish to disable this app, go to Apps, Active Apps, scroll down to find Privacy and click Disable.

Building the app

The app can be built by using the provided Makefile by running:

make

This requires the following things to be present:

  • make
  • which
  • tar: for building the archive
  • curl: used if phpunit and composer are not installed to fetch them from the web
  • npm: for building and testing everything JS, only required if a package.json is placed inside the js/ folder

The make command will install or update Composer dependencies if a composer.json is present and also npm run build if a package.json is present in the js/ folder. The npm build script should use local paths for build systems and package managers, so people that simply want to build the app won't need to install npm libraries globally, e.g.:

package.json:

"scripts": {
    "test": "node node_modules/gulp-cli/bin/gulp.js karma",
    "prebuild": "npm install && node_modules/bower/bin/bower install && node_modules/bower/bin/bower update",
    "build": "node node_modules/gulp-cli/bin/gulp.js"
}

Publish to App Store

First get an account for the App Store then run:

make && make appstore

The archive is located in build/artifacts/appstore and can then be uploaded to the App Store.

Running tests

You can use the provided Makefile to run all tests by using:

make test

This will run the PHP unit and integration tests and if a package.json is present in the js/ folder will execute npm run test

Of course you can also install PHPUnit and use the configurations directly:

phpunit -c phpunit.xml

or:

phpunit -c phpunit.integration.xml

for integration tests