Skip to content

Commit 4f21edc

Browse files
committed
various small updates
1 parent 5fb74c7 commit 4f21edc

15 files changed

+25
-25
lines changed

fern/products/sdks/overview/csharp/publishing-to-nuget.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ you'll have a versioned package published on NuGet.
1212
<img src="assets/dotnet-package.png" alt="Versioned package published on NuGet" />
1313
</Frame>
1414

15-
<Info>This guide assumes that you already have an initialized `fern` folder on your local machine. If you don’t, run `fern init`. See [.NET Quickstart](quickstart.mdx) for more details.</Info>
15+
<Markdown src="/products/sdks/snippets/setup-fern-folder-callout.mdx"/>
1616

1717
## Set up your GitHub integration
1818

fern/products/sdks/overview/csharp/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Get started quickly with the Fern .NET SDK.
55

66
Generate a C#/.NET SDK by following the instructions on this page.
77

8-
<Markdown src="/products/sdks/snippets/quickstart-prereqs.mdx"/>
8+
<Markdown src="/products/sdks/snippets/setup-fern-folder-callout.mdx"/>
99

1010
<Steps>
1111

fern/products/sdks/overview/go/publishing-to-go-package-manager.mdx

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ a versioned package published on pkg.go.dev.
1717

1818
1. Create a new GitHub repository called `company-go` (or something similar) for your SDK, if you haven't done so already. Make sure your repository has:
1919
* **Public** visibility
20-
* A required license (e.g. [MIT](https://opensource.org/license/mit), [Apache](https://www.apache.org/licenses/LICENSE-2.0)) to the repository.
20+
* An [approved license](https://pkg.go.dev/license-policy)ç (e.g. [MIT](https://opensource.org/license/mit), [Apache](https://www.apache.org/licenses/LICENSE-2.0))
2121
1. Install the [Fern GitHub App](https://github.com/apps/fern-api): Select **Configure**, then scroll down to **Repository Access**. Select **Only select repositories** and in the dropdown select the repository for your SDK. Click **Save**.
2222

2323

@@ -97,13 +97,16 @@ a versioned package published on pkg.go.dev.
9797

9898
Navigate to `https://pkg.go.dev/github.com/<github-org>/<github-repo-name>/` and send a request to index your package. In a few minutes, your new release should be published to [https://pkg.go.dev/](https://pkg.go.dev/)!
9999

100-
<Tip>After releasing a new version, it may take a few minutes for pkg.go.dev
101-
to index and display the update. You can also try checking to see if the Go
102-
proxy has indexed your module at
103-
`https://proxy.golang.org/github.com/<github-org>/<github-repo-name>/@v/list`. pkg.go.dev
104-
indexing usually happens within 5-15 min of the proxy picking it up. For
105-
more information, see Go's documentation on [Adding a
106-
package](https://pkg.go.dev/about#adding-a-package). </Tip>
100+
<Tip>
101+
After releasing a new version, it may take a few minutes for pkg.go.dev
102+
to index and display the update. You can also try checking to see if the Go
103+
proxy has indexed your module at
104+
`https://proxy.golang.org/github.com/<github-org>/<github-repo-name>/@v/list`. pkg.go.dev
105+
indexing usually happens within 5-15 min of the proxy picking it up.
106+
107+
For more information, see Go's documentation on [Adding a
108+
package](https://pkg.go.dev/about#adding-a-package).
109+
</Tip>
107110

108111
</Step>
109112

fern/products/sdks/overview/go/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Get started quickly with the Fern Go SDK.
55

66
Generate a Go SDK by following the instructions on this page.
77

8-
<Markdown src="/products/sdks/snippets/quickstart-prereqs.mdx"/>
8+
<Markdown src="/products/sdks/snippets/setup-fern-folder-callout.mdx"/>
99

1010
<Steps>
1111

fern/products/sdks/overview/java/publishing-to-maven-central.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Publish your public-facing Fern Java SDK to the [Maven Central
77
registry](https://pypi.org/). After following the steps on this page,
88
you'll have a versioned package published on Maven Central.
99

10-
<Info>This guide assumes that you already have an initialized `fern` folder on your local machine. If you don’t, run `fern init`. See [Java Quickstart](quickstart.mdx) for more details.</Info>
10+
<Markdown src="/products/sdks/snippets/setup-fern-folder-callout.mdx"/>
1111

1212
## Set up your GitHub integration
1313

fern/products/sdks/overview/java/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Get started quickly with the Fern Java SDK.
55

66
Generate a Java SDK by following the instructions on this page.
77

8-
<Markdown src="/products/sdks/snippets/quickstart-prereqs.mdx"/>
8+
<Markdown src="/products/sdks/snippets/setup-fern-folder-callout.mdx"/>
99

1010
<Steps>
1111

fern/products/sdks/overview/php/publishing-to-packagist.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ you'll have a versioned package published on Packagist.
1111
<img src="assets/packagist-package.png" alt="Versioned package published on Packagist" />
1212
</Frame>
1313

14-
<Info>This guide assumes that you already have an initialized `fern` folder on your local machine. If you don’t, run `fern init`. See [PHP Quickstart](quickstart.mdx) for more details.</Info>
14+
<Markdown src="/products/sdks/snippets/setup-fern-folder-callout.mdx"/>
1515

1616
## Set up your GitHub integration
1717

fern/products/sdks/overview/php/quickstart.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Get started quickly with the Fern PHP SDK.
55

66
Generate a PHP SDK by following the instructions on this page.
77

8-
<Markdown src="/products/sdks/snippets/quickstart-prereqs.mdx"/>
8+
<Markdown src="/products/sdks/snippets/setup-fern-folder-callout.mdx"/>
99

1010
<Steps>
1111

@@ -55,7 +55,7 @@ sdks/ # created by fern generate --group php-sdk
5555
└─ sdk/
5656
├─ src/
5757
├─ YourOrganizationClient.php
58-
└─ Imdb/ # or the name of your API
58+
└─ Types/
5959
└─ tests/
6060
└─ Core/
6161
```

fern/products/sdks/overview/python/publishing-to-pypi.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ you'll have a versioned package published on PyPI.
1111
<img src="assets/pypi-package.png" alt="Versioned package published on PyPI" />
1212
</Frame>
1313

14-
<Info>This guide assumes that you already have an initialized `fern` folder on your local machine. If you don’t, run `fern init`. See [Python Quickstart](quickstart.mdx) for more details.</Info>
14+
<Markdown src="/products/sdks/snippets/setup-fern-folder-callout.mdx"/>
1515

1616
## Set up your GitHub integration
1717

fern/products/sdks/overview/python/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Get started quickly with the Fern Python SDK.
55

66
Generate a Python SDK by following the instructions on this page.
77

8-
<Markdown src="/products/sdks/snippets/quickstart-prereqs.mdx"/>
8+
<Markdown src="/products/sdks/snippets/setup-fern-folder-callout.mdx"/>
99

1010
<Steps>
1111
<Markdown src="/products/sdks/snippets/pass-fern-check.mdx"/>

0 commit comments

Comments
 (0)