This directory contains all of the user documentation for NGINX Amplify, as well as the requirements for linting, building, and publishing the documentation.
Docs are written in Markdown. We build the docs using Hugo and host them on Netlify.
-
To install Hugo locally, refer to the Hugo installation instructions.
NOTE: We are currently running Hugo v0.115.3 in production.
-
We use markdownlint to check that Markdown files are correct. Use
npm
to install markdownlint-cli:npm install -g markdownlint-cli
To build the docs locally, run the desired make
command from the docs directory:
make clean - removes the local `public` directory, which is the default output path used by Hugo
make docs - runs a local hugo server so you can view docs in your browser while you work
make hugo-mod - cleans the Hugo module cache and fetches the latest version of the theme module
make docs-drafts - runs the local hugo server and includes all docs marked with `draft: true`
-
To run the markdownlint check, run the following command from the docs directory:
markdownlint -c docs/mdlint_conf.json content
Note: You can run this tool on an entire directory or on an individual file.
To create a new doc file that contains all of the pre-configured Hugo front-matter and the docs task template, run the following command in the docs directory:
hugo new <SECTIONNAME>/<FILENAME>.<FORMAT>
For example:
hugo new getting-started/install.md
The default template -- task -- should be used for most docs. To create docs using the other content templates, you can use the --kind
flag:
hugo new tutorials/deploy.md --kind tutorial
The available content types (kind
) are:
- concept: Helps a customer learn about a specific feature or feature set.
- tutorial: Walks a customer through an example use case scenario; results in a functional PoC environment.
- reference: Describes an API, command line tool, config options, etc.; should be generated automatically from source code.
- troubleshooting: Helps a customer solve a specific problem.
- openapi: Contains front-matter and shortcode for rendering an openapi.yaml spec
Format links as Hugo refs.
- File extensions are optional.
- You can use relative paths or just the filename. (Paths without a leading / are first resolved relative to the current page, then to the remainder of the site.)
- Anchors are supported.
For example:
To install <product>, refer to the [installation instructions]({{< ref "install" >}}).
You can use the img
shortcode to add images into your documentation.
-
Add the image to the static/img directory, or to the same directory as the doc you want to use it in.
- DO NOT include a forward slash at the beginning of the file path. This will break the image when it's rendered. See the docs for the Hugo relURL Function to learn more.
-
Add the img shortcode:
{{< img src="<img-file.png>" >}}
Note: The shortcode accepts all of the same parameters as the Hugo figure shortcode.
You can use Hugo shortcodes to do things like format callouts, add images, and reuse content across different docs.
For example, to use the note callout:
{{< note >}}Provide the text of the note here. {{< /note >}}
The callout shortcodes also support multi-line blocks:
{{< caution >}}
You should probably never do this specific thing in a production environment.
If you do, and things break, don't say we didn't warn you.
{{< /caution >}}
Supported callouts:
caution
important
note
see-also
tip
warning
A few more fun shortcodes:
fa
: inserts a Font Awesome iconimg
: include an image and define things like alt text and dimensionsinclude
: include the content of a file in another file; the included file must be present in the content/includes directorylink
: makes it possible to link to a file and prepend the path with the Hugo baseUrlopenapi
: loads an OpenAPI spec and renders as HTML using ReDocraw-html
: makes it possible to include a block of raw HTMLreadfile
: includes the content of another file in the current file; does not require the included file to be in a specific location