Project structure

View as Markdown

Configuring fern starts with the fern folder, which contains your API definitions, SDK generators, and your CLI version.

Fern recommends a multi-repository structure with your fern folder in a source repository (containing your API definitions and generation configuration) and each generated SDK in its own separate repository.

Directory structure

When you run fern init (for the Fern Definition) or fern init --spec-type path/to/spec (for other specs), your fern folder is initialized with the following files:

fern
fern.config.json# Root-level config for entire Fern project
generators.yml# Declares APIs and configures SDK generation
spec-folder# definition, openapi, asyncapi, etc.
spec-file.yml# API definition file

Core configuration files

Beyond the core files, you can optionally use an overrides file to customize your API definition without modifying the original spec. See Overrides for instructions.

fern.config.json

The fern.config.json file stores your organization name and the Fern CLI version. Pinning the version provides deterministic builds.

fern.config.json
1{
2 "organization": "plant-catalog",
3 "version": "2.4.0"
4}

When working with a locally installed CLI, set version to "*". See Install Fern CLI locally for details.

generators.yml

The generators.yml file is required for OpenAPI/AsyncAPI to declare your API specification location. This also enables API Reference documentation.

generators.yml
1api:
2 specs:
3 - openapi: ./openapi/openapi.yml

For Fern Definition, no generators.yml is needed to generate API Reference docs. Fern automatically detects your API by checking for a definition/ directory.

For SDK generation, generators.yml is required for all specification formats. Add a groups section to configure which SDKs to generate. See the SDKs project structure for details.

API definition file

For Fern Definition, your API configuration is split across two files: api.yml for API-wide configuration and separate .yml files for your actual endpoint and type definitions. See What is a Fern Definition? for more information.

For the other specification formats (OpenAPI, AsyncAPI, OpenRPC, and gRPC), you’ll have a single self-contained specification file.

Multiple APIs

Fern supports two approaches for working with multiple API definitions:

  1. Separate SDKs for each API - Each API generates its own independent set of SDK packages (e.g., @company/user-api, @company/payments-api or versioned like @company/sdk-v1, @company/sdk-v2)
  2. Combined SDKs from multiple APIs - Multiple APIs merge into a single SDK package with optional namespacing (e.g., client.users, client.payments or versioned like client.v1, client.v2)

Separate SDKs for each API

Use this approach when each API should generate its own independent set of SDKs. This works for both distinct APIs (e.g., user-api and payments-api) and versioned APIs where you want each version to be independently installable (e.g., @company/sdk-v1, @company/sdk-v2).

1

Place each API in its own directory

Place each API or version of an API into a separate subfolder of fern/apis/:

fern
fern.config.json
apis
user-api
generators.yml# Configures user-api SDKs
openapi.yml
payments-api
generators.yml# Configures payments-api SDKs
openapi.yml
2

Configure generators.yml for each API

Each API directory contains its own generators.yml file that references the spec in the same folder:

generators.yml
1api:
2 specs:
3 - openapi: openapi.yml # Spec file in the same folder
4groups:
5 # SDK generator configuration

Combined SDKs from multiple APIs

Pro and Enterprise feature

This feature is available only for the Pro and Enterprise plans. You can merge up to five APIs into a single SDK on the Pro plan, and unlimited APIs on the Enterprise plan. To get started, reach out to support@buildwithfern.com.

Use this approach when you want to merge multiple APIs into a single SDK package, with optional namespacing to organize them. This works for both distinct APIs and versioned APIs, though it increases package size as all APIs are bundled together.

For versioned APIs, namespacing let you access different versions like client.v1 and client.v2 within the same package.

1

Place each API in separate subfolders

Place each API into a separate subfolder of fern/apis/:

fern
fern.config.json
generators.yml# Single config for combined SDKs
apis
user-api
payments-api
2

List all APIs in a single generators.yml

List all APIs in a single generators.yml:

generators.yml
1api:
2 specs:
3 - openapi: user-api/openapi.yml
4 - openapi: payments-api/openapi.yml
5groups:
6 # SDK generator configuration
3

Add namespaces (optional)

Add namespaces to handle overlapping schema names between APIs or to organize different API versions:

generators.yml
1api:
2 specs:
3 - openapi: apis/user-api/openapi.yml
4 - namespace: payments
5 openapi: apis/payments-api/openapi.yml
6groups:
7 # SDK generator configuration