Files
redocly-cli/docs/commands/preview-docs.md
Lorna Jane Mitchell 909fb471ca Add Vale for prose linting (#1099)
* feat: Add Vale configuration and rules

* docs: Fix top-level files to match Vale rules

* docs: Vale updates for the commands docs

* docs: apply Vale updates to the decorator docs

* docs: Update guides to match Vale rules

* docs: update rules and other content to meet Vale standards

* docs: add Vale link and information to CONTRIBUTING

* feat: Add GitHub action for Vale

* docs: minor editing to readme.md

* docs: minor editing to the changelog.md file

* docs: minor edits to the join.md file in commands folder

* docs: minor edits to lint.md file in the commands directory

* docs: minor edit to the login.md file in the commands directory

* docs: minor edits to the preview.md file in the commands directory

* docs: minor edits to push.md file in the comands directory

* docs: minor edits to the info-description-override.md file in the decorators directory

* docs: minor edits to the configure-rules.md file in the guides directory

* docs: minor edits to custom-plugin.md file in the resources directory

* docs: minor editing to the no-http-verbs-in-paths.md file in the rules directory

---------

Co-authored-by: Heather Cloward <heathercloward@gmail.com>
2023-06-01 10:10:43 +01:00

118 lines
6.1 KiB
Markdown

# `preview-docs`
## Introduction
With this command, you can generate documentation previews for API definitions on your local machine.
If you have a license key or API key configured, the output is a preview of the premium [Redocly API reference docs](https://redocly.com/reference/). Otherwise, it is a preview of [Redoc community edition](https://redocly.com/redoc/).
:::success Tip
To preview docs using the premium Redocly API reference docs, you must first authenticate to the API registry with the [`login`](./login.md) command.
:::
## Usage
```bash
redocly preview-docs <api>
redocly preview-docs <api> [--config=<path>] [--port=<value>] [--host=<host>]
redocly preview-docs <api> [--force] [--help] [--version]
redocly preview-docs <api> --version
```
## Options
| Option | Type | Description |
| ----------------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| api | string | Path to the API definition filename or alias that you want to generate the preview for. Refer to [the api section](#api) for more options. |
| --config | string | Specify path to the [configuration file](#custom-configuration-file). |
| --force, -f | boolean | Generate preview output even when errors occur. |
| --help | boolean | Show help. |
| --host, -h | string | Specify the host where the documentation preview can be accessed. The default value is `127.0.0.1`. |
| --port, -p | integer | Specify the port where the documentation preview can be accessed. You can set any port as long as it is not used by applications in your operating system. The default value is port `8080`. |
| --skip-decorator | [string] | Ignore [certain decorators](#skip-preprocessor-or-decorator). |
| --skip-preprocessor | [string] | Ignore [certain preprocessors](#skip-preprocessor-or-decorator). |
| --use-community-edition | boolean | Force using Redoc Community Edition for docs preview. |
| --version | boolean | Show version number. |
## Examples
### Api
The command behaves differently depending on how you pass the api to it, and whether the [configuration file](#custom-configuration-file) exists.
#### Pass api directly
```bash
redocly preview-docs openapi/openapi.yaml
```
In this case, `preview-docs` previews the definition that was passed to the command. The configuration file is ignored.
#### Pass api alias
Instead of a full path, you can use an API name from the `apis` section of your Redocly configuration file.
```bash Command
redocly preview-docs core@v1
```
```yaml Configuration file
apis:
core@v1:
root: ./openapi/definition.json
```
In this case, after resolving the path behind the `core@v1` name (see the `Configuration file` tab), `preview-docs` generates a preview of the `definition.json` file. For this approach, the Redocly configuration file is mandatory.
### Custom configuration file
By default, the CLI tool looks for the [Redocly configuration file](/docs/cli/configuration/index.mdx) in the current working directory. Use the optional `--config` argument to provide an alternative path to a configuration file.
```bash
redocly preview-docs --config=./another/directory/config.yaml
```
### Custom port for preview
By default, without using the `port` option, the preview starts on port `8080`, so you can access the docs at `http://localhost:8080`
To specify a custom port for the preview, pass the desired value using either short or long option format:
```bash Short format
redocly preview-docs -p 8888 openapi/openapi.yaml
```
```bash Long format
redocly preview-docs -port 8888 openapi/openapi.yaml
```
Both commands start the preview on port `8888`, so you can access the docs at `http://localhost:8888`.
### Custom host for preview
By default, without using the `host` option, the preview starts on host `127.0.0.1`, so you can access the docs at `http://127.0.0.1:8080` or `http://localhost:8080`.
To specify a custom host for the preview, pass the desired value using either short or long option format:
```bash Short format
redocly preview-docs -h 0.0.0.0 openapi/openapi.yaml
```
```bash Long format
redocly preview-docs --host 0.0.0.0 openapi/openapi.yaml
```
Both commands start the preview on host `0.0.0.0`, so you can access the docs at `http://0.0.0.0:8080`
### Skip preprocessor or decorator
You may want to skip specific preprocessors, rules, or decorators upon running the command.
```bash Skip preprocessors
redocly preview-docs --skip-preprocessor=discriminator-mapping-to-one-of --skip-preprocessor=another-example
```
```bash Skip decorators
redocly preview-docs --skip-decorator=generate-code-samples --skip-decorator=remove-internal-operations
```