> Arbitrary text to add at the BEGINNING of the page

# Welcome to AnarPetstore!

> Everything you need to build the best developer experience

This repository is AnarPetstore Linking. This is a docs site for testing custom DEV-WITH-REPO domain FTUX for docs.

Use this template to get started quickly, then replace the sample content with your own API and documentation.

## What's included

This starter template contains everything you need to publish documentation:

## Getting started

```bash
git clone <your-template-repo.git>
cd docs-starter
```

```bash
npm install -g fern-api
```

Start a local development server with hot-reloading:

```bash
fern docs dev
```

Open [http://localhost:3000](http://localhost:3000) to see your docs.

Update `fern.config.json` with your organization name and `docs.yml` with your desired URL:

```json title="fern.config.json"
{
  "organization": "your-org-name",
  "version": "0.46.15"
}
```

```yaml title="docs.yml"
instances:
  - url: your-org.docs.dev.buildwithfern.com
```

When you're ready to go live:

```bash
fern generate --docs
```

## API link tests

Testing `api:` link resolution for the bug fix. Format: `[text](api:...)`.

**`api:METHOD/path` — endpoint without api name (works today):**

* [POST /plant](api:POST/plant)
* [GET /plant/\{plantId}](api:GET/plant/\{plantId})
* [GET /plant/search/status](api:GET/plant/search/status)
* [GET /user/auth/login](api:GET/user/auth/login)

**`api:apiName:METHOD/path` — endpoint with api name (currently broken):**

* [POST /plant (named)](api:example-openapi:POST/plant)
* [GET /plant/\{plantId} (named)](api:example-openapi:GET/plant/\{plantId})
* [GET /user/\{username} (named)](api:example-openapi:GET/user/\{username})

**`api:apiName` — link to API reference section root (currently not supported):**

* [Plant Store API](api:example-openapi)

## Next steps

Replace the sample Plant Store API with your own OpenAPI specification, update the Markdown pages with your content, and customize the theme to match your brand. For detailed guidance, explore the pages in this documentation or visit the [Fern documentation](https://buildwithfern.com/learn).

Learn how to preview and publish changes using the CLI or Fern Editor

Configure tabs, sections, and pages in your docs.yml file

Brand your documentation with colors, logos, and layouts

See how Fern generates interactive API documentation