Last updated

Migrate from Workflows

This guide is for users of Redocly's earlier Workflows API Docs product. The steps in this guide cover how to migrate from your existing setup to using Redoc.

Redoc is our next-generation API reference documentation tool with code snippets, request/response examples, mock servers, and the Replay API explorer built into the page. Publish Redoc projects to the Redocly Reunite platform (this version of Redoc is not licensed for use on other platforms; Enterprise+ customers may contact us to discuss other hosting arrangements).

Create a new project

A project is one website and everything that goes with it. The project consists of files and folders; your project comes with a Redocly-hosted repository or you can connect your own Git repository.

  1. Sign up or log in to your Reunite account.

  2. Go to your Reunite dashboard and create a new project.

Every project is different, so there are multiple ways to add content to your project:

Connect an existing Git repository

If you have your API descriptions stored in a Git repository, this repository becomes the source for your Redoc project.

To make your existing Git repository the source for your Redoc project:

  1. Connect your repository to get the existing content connected to the new project.

  2. Don't worry if the Workflows project content doesn't build successfully when you first connect it to Reunite. The other sections in this guide cover the updates that may apply to your project.

Use remote content for multiple repositories

If you have API descriptions in multiple repositories, the remote content feature supports connecting another repository (or more than one) as a source for the project.

Upload an API description

Upload your API description directly in the Editor for your project. If you were using configuration in your Workflows project, add it to a file named redocly.yaml, and follow the steps in the section about updating configuration options later in this guide.

Add an API from an external URL

If your API files are in a separate project than your Redocly setup, add them using the remote content feature.

To add content using the remote content feature:

  1. Go to the Reunite editor in your new project.

  2. Click the plus sign icon (Add content) and select New remote.

  3. Select Add URL link, and enter the following required fields:

    • the URL of the API description
    • the file name to use in Reunite
    • how often to check for updates
    • where in the project to mount the file, such as apis/my-api-name.yaml

The API description is added to your project and you can see it in the preview.

Multiple APIs

Redoc supports multiple API references in a single project. Add each API description to your project, either directly or using remote content.

Add a sidebars.yaml file to the root of your project, and add each API to it as shown in the following example:

sidebars.yaml
- group: Orders
  page: apis/orders/openapi.yaml
- group: Accounts
  page: apis/accounts/openapi.yaml

You can customize the order and display labels of the APIs, or group in another structure to suit your needs. Visit the sidebars documentation for more information and examples.

Multiple API versions

If you were using multiple versions of a single API, you can do the same thing with updated Redoc, but the structure looks a little different.

To create a structure for versioned APIs:

  1. Create one folder per version, starting with an @ character. For example, if you have two versions of your API, version 10 and version 12, you might create a folder structure like this:

    • apis/@v10/
    • apis/@v12/
  2. Add the OpenAPI descriptions to the folders.

  3. In the project (or preview), use the dropdown to switch between versions; it retains the user's position in the API reference documentation for any entries which exist in both versions.

  4. (Optional) For additional control, configure a versions.yaml file to specify which versions should be displayed or not, and which is the default version.

Update existing configuration options

If you had an existing redocly.yaml, there may be settings that need updating. Feedback about outdated or unknown configuration options is available either using Redocly CLI on your computer or using Reunite.

Check configuration with Reunite

Open the redocly.yaml file in the editor. The editor will indicate any configuration that isn't supported in the newer products. Check the list of configuration updates for advice on changing some of the most common settings as part of your migration project.

Check configuration locally

Redocly CLI can help identify those changes, and verify that the config file is correct.

Start by checking the config with Redocly CLI using the following command:

redocly check-config

If there are settings that are outdated or unrecognized, the output displays warnings or errors.

Update configuration settings

The following table shows how to update some commonly used configuration options to work with the new product:

Previous configurationReplacement values

referenceDocs

This section is replaced by the openapi configuration setting. For example:

openapi:
  showExtensions: true

Check the openapi configuration documentation for all the options for configuring reference documentation.

htmlTemplateInstead of supplying a template, use the configuration options for the navbar, sidebar, and footer sections. The navigation documentation is a good starting point to find out more about each element.
apiDefinitionsReplace with apis and one named entry for each API in your project. Check the apis configuration reference for more information and examples.
lintThe lint entry is no longer needed. Instead, use the keys such as extends and rules at the top level of the redocly.yaml configuration file.
assert/*The configurable rules syntax changed. Use rule/ instead of assert/ and check the configurable rules documentation for other changes.
paginationNot supported. This version of Redoc has a modern style of pagination, operations are divided into sections by tags.
hideTryItPanelReplaced by hideReplay as the "Try It" functionality is provided by Replay.

If you spot another configuration setting that should be included in this guide, leave some feedback at the bottom of the page to let us know.

Style the output

The styling mechanism had a big upgrade in the new products, and is now based on CSS variables for a more customizable and flexible experience. Set colors, fonts, and styles by configuring your own theme.

To apply custom styles to your project:

  1. Create a directory called @theme/ at the top level of your project.

  2. Add a styles.css file inside the new directory.

  3. To get you started with an example, paste the following example content:

    @theme/styles.css
    :root {
      --heading-text-color: var(--color-purple-7);
      --text-color-secondary: #22242b;
      --sidebar-bg-color: ivory;
      --panel-border: 3px solid teal;
    }
    
    :root.dark {
      --sidebar-bg-color: midnightblue;
      --text-color-secondary: #ffffdf;
    }
    
    

    This snippet changes a few colors in both light and dark modes, and the preview automatically updates to reflect the changes.

  4. Edit the @theme/styles.css file to reflect your own branding and preferences. Using "Inspect" in your browser developer tools shows the CSS class names that you can change. The documentation includes some styling guides to help you get started, and a full CSS variables dictionary for your reference.

Local development platform

Using a local development platform requires that your Reunite project exists in your own Git provider. Our tools are based on NodeJS, so you will also need version 18 or later and npm installed.

To run your project locally:

  1. Install Redocly CLI.

  2. Before making any changes, try the out-of-the-box Redoc experience by running the following command:

    redocly preview
    

    The preview command starts a local server, visit the URL shown (usually http://localhost:4000) to get a first glimpse of your API rendered with the newer Redoc tools.

  3. Use the sections throughout the guide to structure your repository to suit your needs, update the configuration, and adjust the styles as needed.

Next steps

There are many more aspects to Redoc that you might like to explore. Here are some suggestions for where to go next: