🔑 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.
Перейти к файлу
dependabot[bot] 99f2ccbfbc
Merge pull request #1133 from nextcloud/dependabot/npm_and_yarn/express-4.21.0
2024-09-16 21:46:57 +00:00
.github ci: Update workflows 2024-09-10 11:30:40 +02:00
.tx
LICENSES chore: Add missing licenses 2024-09-09 16:25:25 +02:00
appinfo feat(deps): Add Nextcloud 31 support on master 2024-08-14 12:37:58 +02:00
build-js Update build-js/WebpackSPDXPlugin.js 2024-09-09 20:29:42 +02:00
img
js chore(assets): Recompile assets 2024-09-09 14:18:02 +00:00
l10n Fix(l10n): Update translations from Transifex 2024-09-13 01:26:49 +00:00
lib
src
templates
tests
.eslintignore
.eslintrc.js
.gitattributes
.gitignore
.l10nignore
.php-cs-fixer.dist.php
AUTHORS.md
COPYING
Makefile
README.md
REUSE.toml chore: Migrate reuse to toml 2024-09-09 16:09:17 +02:00
babel.config.js
composer.json
composer.lock
package-lock.json Chore(deps-dev): Bump express from 4.19.2 to 4.21.0 2024-09-16 21:29:43 +00:00
package.json Chore(deps): Bump @nextcloud/vue from 8.12.0 to 8.16.0 2024-08-15 08:42:54 +00:00
stylelint.config.js
tsconfig.json
webpack.js chore: Migrate reuse to toml 2024-09-09 16:09:17 +02:00

README.md

🔑 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