Last updated

Get started locally

This guide gets you started with a Redocly project in local development mode.

Before you begin

To work locally with a Redocly project, you need to:

About Redocly CLI

Redocly CLI is an open source command-line tool for working with APIs. Visit the Redocly CLI documentation to learn more about what it can do.

Once the CLI is installed, it's time to create some content.

Start with an index page

The landing page for each directory in your project is index.md. Create a fresh directory for your new project, and then add a file named index.md.

Either create your own content, or you can use the following Markdown in your index.md file:

index.md
# Start something new

There's a real excitement to starting something new.

- A blank page
- A fresh opportunity
- Limitless potential

## Good for writers

Writers need strong tooling so they can deliver a lot of content in a short time.
Efficiency is key, so this platform supports [Markdoc](https://markdoc.dev/) format (it's a lot like Markdown, but with added niceness).

Build-in link checking and branch previews lets writers move quickly and safely when creating content or managing updates.

## Good for readers

Clean layout and a visible table of contents makes good content a pleasure to read and process.

Content is created, let's see how it looks.

Use source control

Using a particular source control is outside of the scope of this guide, but it's recommended to add your files to a Git repository or equivalent, and commit your changes after each step as you go along.

View the project

Redocly has a local development server that you can use to preview your work on your local machine. Start the preview by running the following command in your terminal, in your project directory:

redocly preview

You'll see some output while the project is building. When it is ready, it will be available on http://localhost:4000.

Add more pages, and a sidebar

One page isn't very exciting, so let's add a few more.

Supported formats

These examples use Markdown, but Markdoc is also supported. If you're new to Markdoc, visit our Markdoc learning hub for more information and lots of examples.

Create files named style-guide.md and about.md. Then either create your own content there, or borrow the following examples:

style-guide.md
# Style guide

10-second style guide:

- Please write in sentences.
- Use bullet lists, tables, and subheadings to break up the text.
- Every page needs links to other interesting pages.
- Never use future tense.

about.md
# About

This is an _excellent_ project.
You will learn **all** the things.

When you add more pages, a sidebar is automatically generated to list them all. If you want more control over the navigation, such as specifying the order, changing the link text, or grouping pages, then you'll want to configure the sidebar yourself.

To configure the sidebar for your project, create a file named sidebars.yaml and add the following content:

sidebars.yaml
- page: index.md
- page: style-guide.md
- page: about.md

This displays the pages in a specific order, and you can also change the display labels. For example, edit the file as shown in the following example to change the link to the index page:

sidebars.yaml
- page: index.md
  label: Start here
- page: style-guide.md
- page: about.md

If you don't specify a label, the page title is used. Take some time to add a few more pages, and change the navigation bar by re-ordering pages and changing the page labels. There's more information and examples in the documentation pages for working with sidebars and configuring sidebar groups.

Fine-tune your configuration

Things look pretty good already, but there are plenty more ways that you can adjust your project to meet your needs. All the configuration for Redocly projects is done using configuration options in a file named redocly.yaml. By changing the settings in this file, you can adjust the project behavior to fit your use case.

Create a file called redocly.yaml, then try the following examples (or pick some other configuration settings) to change how the site looks. Change one thing at a time and check the preview as you go along.

  1. When you publish a site, it will need to fit your company's brand. Styling is covered in a later section, but as a first step let's configure a logo file to use.

    Create an images/ folder and add your logo there. If you don't have a logo file handy, copy this one and put it in your new folder.

    Redocly logo

    Use the following configuration to set the logo for your site:

    redocly.yaml
    logo:
      image: ./images/redocly-logo.png
    
  2. For bigger or more complex projects, the breadcrumbs feature displays above each page and helps users to understand where they are in the site structure. However this might be too much for our small getting started project, so let's turn them off.

    redocly.yaml
    breadcrumbs:
      hide: true
    
  3. Some links are useful on every page, so it's a good idea to add a footer to accommodate them. The setting for this is in footer, try adding something like the following example:

    redocly.yaml
    footer:
      items:
        - group: Redocly
          items:
            - href: https://redocly.com
              label: Redocly.com
            - href: https://redocly.com/docs
              label: Redocly docs
        - group: Docs Resources
          items:
            - href: https://markdoc.dev/
              label: Markdoc
            - href: https://openapis.org
              label: OpenAPI
    

View the full configuration options list to see what else you can change.

Add API reference documentation

API reference documentation is a major feature of the Redocly products, so add an OpenAPI description and try the feature yourself. If you already have an API description then you can use that, or you can download the Museum API example to use as a test API.

Create an apis/ directory in your project and add the OpenAPI file(s) there.

To include the API in the sidebar, add the root file to sidebars.yaml. The API reference adds sidebar entries for the user to navigate the various sections, so try adding the API description as the page for a group sidebar entry, like the following example:

sidebars.yaml
- group: Museum API
  page: apis/openapi.yaml

Explore the generated documentation and see how the API you picked is presented. API reference documentation is a vital part of API experience, and our Redoc rendering makes it a good experience.

Screenshot of Redoc rendering the Museum API

Many aspects of the API documentation are configurable, visit the theme.openapi configuration page for more information and ideas.

Style to suit

Your company brand identity is an important part of anything you publish, so in this section you will learn how to style your new site. Realm uses CSS variables for most of the styling on the site. This enables you to set a few key variables and deliver a consistent experience throughout the project - then adjust the specific details as needed.

To customize the styles:

  • Add a folder called @theme in the root of your project.
  • Add a styles.css file in the @theme folder.
  • Add entries to style.css to override any CSS variables you'd like to change.

For example, if your company brand color is green, set that using something like the following example:

@theme/styles.css
:root {
  --heading-text-color: mediumseagreen;
}

Setting a CSS variable means that the change is used consistently through the site, for example, try setting --font-size-base to different values and see that all the text scales as a result. Another quick way to bring a brand identity to the site is to set the background color on the navbar and the footer you just created. The following example shows that in action:

@theme/styles.css
:root {
  --heading-text-color: mediumseagreen;
  --footer-bg-color: lightblue;
  --navbar-bg-color: lightblue;
  --font-size-base: 18px;
}

Your site looks a bit different to the default, as you can see in the following pair of screenshots:

Get started demo site without styles

Get started demo site with styles

Explore the CSS variables reference or inspect your site with web developer tools in your browser to identify the variables to change.

Publish to your site

The preview feature is not designed (or, indeed, licensed) for production use, so once you're happy with how everything looks, go ahead and publish the content to Redocly. The details will depend on the tools and platforms you use, but as a general overview:

  1. Add your files into a Git repository if you haven't already.

  2. Push the files to your chosen Git provider (we support GitHub, GitLab, Azure DevOps and others).

  3. Log in to Reunite and create a new project; connect to your Git remote repository.

  4. The project is created and your site is built - go and check it out!