You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/build-the-docs.md
+19-19
Original file line number
Diff line number
Diff line change
@@ -188,7 +188,7 @@ With the dependencies installed, you are now ready to build (generate) the ownCl
188
188
189
189
It is very helpful to see how changes to a page will render without running a build - without including other data images or attributes defined somewhere else, etc. Therefore you can install a plugin for your browser to render `.adoc` files. You may use the `Asciidoctor.js Live Preview` or any other that is available for your browser - just search and install a suitable one. Post installing, check that _accessing local files_ in the plugin settings is allowed.
190
190
191
-
The result shown in the browser may look slightly different to a version that is built via ` npm antora-local`, but is a good start to get an impression and to catch typos made.
191
+
The result shown in the browser may look slightly different to a version that is built via ` npm run antora-local`, but is a good start to get an impression and to catch typos made.
192
192
193
193
## Prepared npm Commands
194
194
@@ -200,26 +200,26 @@ Here is the list of commands and when to use them
200
200
201
201
The following build commands are used when regular content changes are made or small fixes to the UI are incorporated:
202
202
203
-
*`npm antora`
203
+
*`npm run antora`
204
204
Used when you want to build the documentation where internal links have as base `doc.owncloud.com`. The documentation is built for the live environment. Clicking on particular links will then direct to the docs homepage. Use only when you want to check these links or have the CI use them when building.
205
205
206
-
*`npm antora-local`
206
+
*`npm run antora-local`
207
207
**This is the command which you will use the most.** It is used when you want to build the documentation locally where internal links have as base `http://localhost:8080`. The documentation is fully sourced locally. Ideal for checking with `npm serve` after content has been updated or added.
208
208
209
-
*`npm antora-staging`
209
+
*`npm run antora-staging`
210
210
Used when you want to build the documentation where internal links have as base `doc.staging.owncloud.com`. The documentation is built for the staging environment. Note that you manually have to move the content created in `/public` to the staging web page to access it. Note that you can also view locally with `npm serve` which is ideal as first preview step.
211
211
212
-
*`npm antora-bundle`
212
+
*`npm run antora-bundle`
213
213
Used when you want to build the documentation where internal links have as base `doc.staging.owncloud.com`. Compared to `antora-staging`, this uses a locally built `ui-bundle`. This build command should be used when you want to test a changed UI before rolling it out.
214
214
215
215
**For Development Environments**
216
216
217
217
The following build commands are used when bigger refactoring, changes or major upgrades including the UI are made:
218
218
219
-
*`npm antora-dev-local`
219
+
*`npm run antora-dev-local`
220
220
Used when you want to build the documentation where internal links have as base `http://localhost:8080`. Compared to `antora-staging`, it uses a different site.yml file named `site-dev.yml` which sources manuals not from GitHub but locally.
221
221
222
-
*`npm antora-dev-bundle`
222
+
*`npm run antora-dev-bundle`
223
223
Used when you want to build the documentation where internal links have as base `http://localhost:8080`. Compared to `antora-dev-local`, it uses a different site.yml file `site-dev.yml` which sources manuals not from GitHub but locally and uses a locally built `ui-bundle`.
224
224
225
225
## Generating the Documentation
@@ -242,13 +242,13 @@ Using npm, as in the example below, is the easiest way to build the documentatio
242
242
Note that the build process is essential as it must run error free for a valid documentation. If you push a change with errors, the CI will complain in the Pull request and disallow any merging. For a quick view on the changes made and without having a full build, you can open the changed file in the browser and view it with the installed plug-in which helps finding typos and/or rendering issues quickly.
243
243
244
244
```
245
-
npm antora-local
245
+
npm run antora-local
246
246
```
247
247
248
248
Use the following command to view the results in the browser as they will appear on the web.
249
249
250
250
```
251
-
npm serve
251
+
npm run serve
252
252
```
253
253
254
254
## Using the Docker Container
@@ -266,7 +266,7 @@ docker run -ti --rm \
266
266
-v $(pwd):/antora/ \
267
267
-w /antora/ \
268
268
owncloudci/nodejs:18 \
269
-
npm antora
269
+
npm run antora
270
270
```
271
271
272
272
If you want to serve your changes locally you have to overwrite the default URL, which points to https://doc.owncloud.com. You can append a custom URL to the command like this:
@@ -276,7 +276,7 @@ docker run -ti --rm \
276
276
-v $(pwd):/antora/ \
277
277
-w /antora/ \
278
278
owncloudci/nodejs:18 \
279
-
npm antora --url http://localhost:8080
279
+
npm run antora --url http://localhost:8080
280
280
```
281
281
282
282
These commands:
@@ -377,7 +377,7 @@ This file **will not** get published and will always stay local. It is a mirror
377
377
378
378
* Before you start changing, run `npm install` to have the dependencies updated.
379
379
380
-
* Depending on what you are developing on, either run: `npm antora-dev-local` or `npm antora-dev-bundle` from the repo you want to build from which will use the formerly created `site-dev.yml`.
380
+
* Depending on what you are developing on, either run: `npm run antora-dev-local` or `npm run antora-dev-bundle` from the repo you want to build from which will use the formerly created `site-dev.yml`.
381
381
382
382
* Finally, run `npm serve` to see the result of the build.
383
383
@@ -389,7 +389,7 @@ Note that you may need changes and testing in more than one component like `docs
389
389
390
390
**IMPORTANT**
391
391
392
-
Though components get sourced locally when running `npm antora-dev-xxx`, some content will still get pulled from external sources when defined in a page. This means that, for development, you still must have an internet connection, like when doing normal builds. If an internet connection is not present, errors will be thrown and the build stops.
392
+
Though components get sourced locally when running `npm run antora-dev-xxx`, some content will still get pulled from external sources when defined in a page. This means that, for development, you still must have an internet connection, like when doing normal builds. If an internet connection is not present, errors will be thrown and the build stops.
393
393
394
394
## Using Search in Production or Development
395
395
@@ -428,13 +428,13 @@ Follow this procedure to show and use search and populate an index:
428
428
```
429
429
There are several ways to fix this, only one is shown when using Chrome browsers. Install the plugin named [Allow CORS: Access-Control-Allow-Origin](https://chrome.google.com/webstore/detail/lhobafahddgcelffkeicbaginigeejlf).
430
430
431
-
4. When building docs, the following environment variables must be added to the build process. Note that you can use any `npm antora-xxx` command:
431
+
4. When building docs, the following environment variables must be added to the build process. Note that you can use any `npm run antora-xxx` command:
432
432
```
433
433
UPDATE_SEARCH_INDEX=true \
434
434
ELASTICSEARCH_NODE=http://localhost:9200 \
435
435
ELASTICSEARCH_INDEX=docs \
436
436
ELASTICSEARCH_WRITE_AUTH=x:y \
437
-
npm antora-local
437
+
npm run antora-local
438
438
```
439
439
Note that `ELASTICSEARCH_WRITE_AUTH` is necessary for building though it does not do any authentication. A value for that envvar must not be omitted but can be any dummy value you like in the format of at minimum two characters separated by a colon.
440
440
@@ -485,7 +485,7 @@ When doing a local build, the link `Edit this page` on the top right resolves to
485
485
486
486
```
487
487
CI=true \
488
-
npm antora-local
488
+
npm run antora-local
489
489
```
490
490
491
491
## Package and Dependency Management
@@ -501,7 +501,7 @@ In case it is necessary to add or remove packages, you need to do this in the `p
501
501
502
502
### Additional Command Line Parameters
503
503
504
-
You can add additional parameters to the currently defined ones or overwrite existing ones, for example, defining the default URL or additional global attributes. Just add them to the `npm antora` command.
504
+
You can add additional parameters to the currently defined ones or overwrite existing ones, for example, defining the default URL or additional global attributes. Just add them to the `npm run antora` command.
505
505
506
506
### Searching and Fixing Attribute Errors
507
507
@@ -511,12 +511,12 @@ It is very beneficial to use command-line attributes when searching and fixing a
0 commit comments