Skip to content

Commit a834f06

Browse files
committed
fix missing run statement
1 parent 0e89290 commit a834f06

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

docs/build-the-docs.md

+19-19
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ With the dependencies installed, you are now ready to build (generate) the ownCl
188188

189189
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.
190190

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.
192192

193193
## Prepared npm Commands
194194

@@ -200,26 +200,26 @@ Here is the list of commands and when to use them
200200

201201
The following build commands are used when regular content changes are made or small fixes to the UI are incorporated:
202202

203-
* `npm antora`
203+
* `npm run antora`
204204
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.
205205

206-
* `npm antora-local`
206+
* `npm run antora-local`
207207
**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.
208208

209-
* `npm antora-staging`
209+
* `npm run antora-staging`
210210
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.
211211

212-
* `npm antora-bundle`
212+
* `npm run antora-bundle`
213213
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.
214214

215215
**For Development Environments**
216216

217217
The following build commands are used when bigger refactoring, changes or major upgrades including the UI are made:
218218

219-
* `npm antora-dev-local`
219+
* `npm run antora-dev-local`
220220
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.
221221

222-
* `npm antora-dev-bundle`
222+
* `npm run antora-dev-bundle`
223223
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`.
224224

225225
## Generating the Documentation
@@ -242,13 +242,13 @@ Using npm, as in the example below, is the easiest way to build the documentatio
242242
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.
243243

244244
```
245-
npm antora-local
245+
npm run antora-local
246246
```
247247

248248
Use the following command to view the results in the browser as they will appear on the web.
249249

250250
```
251-
npm serve
251+
npm run serve
252252
```
253253

254254
## Using the Docker Container
@@ -266,7 +266,7 @@ docker run -ti --rm \
266266
-v $(pwd):/antora/ \
267267
-w /antora/ \
268268
owncloudci/nodejs:18 \
269-
npm antora
269+
npm run antora
270270
```
271271

272272
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 \
276276
-v $(pwd):/antora/ \
277277
-w /antora/ \
278278
owncloudci/nodejs:18 \
279-
npm antora --url http://localhost:8080
279+
npm run antora --url http://localhost:8080
280280
```
281281

282282
These commands:
@@ -377,7 +377,7 @@ This file **will not** get published and will always stay local. It is a mirror
377377

378378
* Before you start changing, run `npm install` to have the dependencies updated.
379379

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`.
381381

382382
* Finally, run `npm serve` to see the result of the build.
383383

@@ -389,7 +389,7 @@ Note that you may need changes and testing in more than one component like `docs
389389

390390
**IMPORTANT**
391391

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.
393393

394394
## Using Search in Production or Development
395395

@@ -428,13 +428,13 @@ Follow this procedure to show and use search and populate an index:
428428
```
429429
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).
430430
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:
432432
```
433433
UPDATE_SEARCH_INDEX=true \
434434
ELASTICSEARCH_NODE=http://localhost:9200 \
435435
ELASTICSEARCH_INDEX=docs \
436436
ELASTICSEARCH_WRITE_AUTH=x:y \
437-
npm antora-local
437+
npm run antora-local
438438
```
439439
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.
440440
@@ -485,7 +485,7 @@ When doing a local build, the link `Edit this page` on the top right resolves to
485485
486486
```
487487
CI=true \
488-
npm antora-local
488+
npm run antora-local
489489
```
490490
491491
## 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
501501
502502
### Additional Command Line Parameters
503503
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.
505505
506506
### Searching and Fixing Attribute Errors
507507
@@ -511,12 +511,12 @@ It is very beneficial to use command-line attributes when searching and fixing a
511511
`grep -rn --exclude-dir={public,.git,node_modules} \{attribute-name}`\
512512
If found, check if the attribute definition is made or passed or needs exclusion.
513513
- If no result is found, it may be the case that the error-causing attribute is not in the master
514-
branch but in another one. This can be identified by adding a custom attribute to the npm antora command like:\
514+
branch but in another one. This can be identified by adding a custom attribute to the `npm run antora` command like:\
515515
`--attribute the-erroring-attribute=HUGO` where HUGO can be anything that is not used and easy to grep.
516516
- Finally, run in the `public` directory: `grep -rn HUGO`. You will see exactly in which branch and file the issue occurs.
517517
If it is a branch other than `master` and an ongoing but not merged fix that targets this issue, you have to
518518
merge the changes first, and then backport them to the branch. Do not forget to sync the branch post merging too.
519-
Having done that, re-running `npm antora` should eliminate that particular missing attribute warning.
519+
Having done that, re-running `npm run antora` should eliminate that particular missing attribute warning.
520520
521521
### Fixing a Directory Not Found Error
522522

0 commit comments

Comments
 (0)