nextcloud-desktop/docs
2020-07-01 12:50:14 +02:00
..
books Add the missing content to the PDF configuration file (#7821) 2020-03-30 12:15:00 +02:00
fonts add missing fonts 2020-02-12 12:30:11 +01:00
generator Integrate pdf generate into pipeline for now 2019-02-12 20:30:30 +01:00
modules/ROOT Update installing.adoc (#7929) 2020-07-01 12:50:14 +02:00
resources/themes add missing fonts 2020-02-12 12:30:11 +01:00
.gitignore Integrate pdf generate into pipeline for now 2019-02-12 20:30:30 +01:00
antora.yml Fix ROOT component version in master branch 2019-05-15 11:37:00 +02:00
CMakeLists.txt Do not install public/ dir but its contents 2019-02-12 20:30:30 +01:00
Makefile fix wrong fix 2019-02-20 10:19:18 +01:00
package.json Integrate pdf generate into pipeline for now 2019-02-12 20:30:30 +01:00
README.md docs: use nodejs and build a drone pipeline 2019-02-12 20:30:30 +01:00
site.yml docs: use nodejs and build a drone pipeline 2019-02-12 20:30:30 +01:00
yarn.lock Update docs JavaScript dependencies 2019-10-10 16:07:11 +02:00

Building the Docs

The desktop client documentation is not built directly; instead, it is built together with the core documentation. However, if you would like to build a local copy of the desktop client documentation, to preview changes that you are making, you can use the following command within the docs/ directory:

yarn install
yarn antora

Note these commands require NodeJS and Yarn to be installed. To learn more about how to install them, please refer to that documentation in the docs repository.

Previewing the Generated Docs

Assuming that there are no build errors, the next thing to do is to view the result in your browser. In case you have already installed a web server, you need to configure a virtual host (or similar) which points to the directory public/, located in the docs/ directory of this repository. This directory contains the generated documentation. Alternatively, use the simple server bundled with the current package.json, just execute the following command to serve the documentation at http://localhost:8080/desktop/:

yarn serve