Create beautiful documentation in under 5 minutes using an OpenAPI/Swagger specification. Here's an example!
Your docs can look this good:
The OpenAPI specification is a format for describing REST APIs. The specification consists of a single JSON or YAML file. OpenAPI was previously known as Swagger. Fern supports both OpenAPI (3.x) and Swagger (2.x). We'll refer to the specification as OpenAPI throughout this guide.
- Click on the "Use this template" button. You must be logged into GitHub.
- Create a new repository. Name it anything you like;
docs
is a common naming choice.
Clone your newly created repository and open it in your favorite integrated development environment (IDE) or code editor.
The files and folders discussed in the following steps will be inside a fern
folder in your repository.
In the fern.config.json
file, replace the placeholder organization name with your actual organization name. For example:
{
"organization": "Petstore",
"version": "0.17.2"
}
In the docs.yml
file, update the docs URL to match your organization's naming convention. For example:
instances:
- url: petstore-openapi.docs.buildwithfern.com
Install the Fern CLI globally by running:
npm install -g fern-api
As this is a global command, you can run it from any location. The CLI commands in the following steps must be run from within your repository.
If you'd like to use the an example OpenAPI specificaton file, run:
fern init --openapi https://petstore3.swagger.io/api/v3/openapi.json
If you'd like to use your own OpenAPI specification file, run:
fern init --openapi URL_OR_PATH_TO_YOUR_OPENAPI_SPEC
You can use a URL to an OAS file online, or you can use a local path. The file must be formatted as JSON or YAML.
Examples:
fern init --openapi https://petstore3.swagger.io/api/v3/openapi.json
fern init --openapi ../apis/openapi.yml
Confirm that you see a new folder named openapi
and that it contains the OAS file you specified, in YAML format.
Note: Don't have an OpenAPI spec? Use Fern's simpler format to define your API. Learn more
Run the following command to check that your OpenAPI specification is valid:
fern check
If you see errors, resolve them in your OpenAPI specification file. If you need help, reach out in Discord or via email. We're here to help!
Generate and publish your documentation with the following command:
fern generate --docs
You will be prompted to log in and connect your GitHub account.
Once the documentation is generated, you will receive a URL where your documentation is published. For example:
┌─
│ ✓ petstore-openapi.docs.buildwithfern.com
└─
Next, modify the markdown pages located in the docs/pages
folder, such as the Welcome page.
Further tailor your documentation to match your brand by adjusting settings in the docs.yml
file.
To re-publish the updates to your documentation, run fern generate --docs
again.
To preview updates to your documentation before publishing changes, run fern generate --docs --preview
.
Fern has a built-in component library for you to use. Explore the components.
If you wish to use a custom subdomain like https://docs.YOUR_ORGANIZATION.com
or a subpath like https://YOUR_ORGANIZATION.com/docs
, you can subscribe to the Starter plan. Once subscribed, update docs.yml
with the custom domain configuration:
- url: petstore-openapi.docs.buildwithfern.com
custom-domain: docs.petstore-openapi.com
For advanced documentation features and options, view the full configuration docs.
Good luck creating beautiful and functional documentation! 🌿