File tree Expand file tree Collapse file tree 7 files changed +41
-34
lines changed
fern/products/sdks/overview Expand file tree Collapse file tree 7 files changed +41
-34
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Generate a C#/.NET SDK by following the instructions on this page.
13
13
14
14
### Add the SDK generator
15
15
16
- Add the C#/.NET SDK generator:
16
+ Run the following command to add the C#/.NET SDK generator to ` generators.yml ` :
17
17
18
18
``` bash
19
19
fern add fern-csharp-sdk --group csharp-sdk
@@ -26,17 +26,24 @@ fern add fern-csharp-sdk --group csharp-sdk
26
26
` ruby-sdk ` , etc) in your organization.
27
27
</Note >
28
28
29
- This command adds the following to ` generators.yml ` :
29
+ This command adds the following ` group ` to ` generators.yml ` :
30
30
31
- ``` yaml
32
- csharp-sdk :
31
+ ``` yaml title="generators.yml"
32
+ csharp-sdk : # group name
33
33
generators :
34
34
- name : fernapi/fern-csharp-sdk
35
35
version : <Markdown src="/snippets/version-number-csharp.mdx"/>
36
36
output :
37
37
location : local-file-system
38
38
path : ../sdks/csharp
39
39
` ` `
40
+ ### Generate the SDK
41
+
42
+ Run the following command to generate your SDK:
43
+
44
+ ` ` ` bash
45
+ fern generate --group csharp-sdk
46
+ ```
40
47
41
48
<Markdown src = " /products/sdks/snippets/generate-sdk.mdx" />
42
49
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Generate a Go SDK by following the instructions on this page.
13
13
14
14
### Add the SDK generator
15
15
16
- Add the Go SDK generator:
16
+ Run the following command to add the Go SDK generator to ` generators.yml ` :
17
17
18
18
``` bash
19
19
fern add fern-go-sdk --group go-sdk
@@ -25,10 +25,10 @@ fern add fern-go-sdk --group go-sdk
25
25
` ruby-sdk ` , etc) in your organization.
26
26
</Note >
27
27
28
- This command adds the following to ` generators.yml ` :
28
+ This command adds the following ` group ` to ` generators.yml ` :
29
29
30
- ``` yaml
31
- go-sdk :
30
+ ``` yaml title="generators.yml"
31
+ go-sdk : # group name
32
32
generators :
33
33
- name : fernapi/fern-go-sdk
34
34
version : <Markdown src="/snippets/version-number-go.mdx"/>
@@ -39,7 +39,7 @@ This command adds the following to `generators.yml`:
39
39
40
40
### Generate the SDK
41
41
42
- Generate the SDK:
42
+ Run the following command to generate your SDK:
43
43
44
44
` ` ` bash
45
45
fern generate --group go-sdk
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Generate a Java SDK by following the instructions on this page.
13
13
14
14
### Add the SDK generator
15
15
16
- Add the Java SDK generator:
16
+ Run the following command to add the Java SDK generator to ` generators.yml ` :
17
17
18
18
``` bash
19
19
fern add fern-java-sdk --group java-sdk
@@ -25,10 +25,10 @@ fern add fern-java-sdk --group java-sdk
25
25
` ruby-sdk ` , etc) in your organization.
26
26
</Note >
27
27
28
- This command adds the following to ` generators.yml ` :
28
+ This command adds the following ` group ` to ` generators.yml ` :
29
29
30
- ``` yaml
31
- java-sdk :
30
+ ``` yaml title="generators.yml"
31
+ java-sdk : # group name
32
32
generators :
33
33
- name : fernapi/fern-java-sdk
34
34
version : <Markdown src="/snippets/version-number-java.mdx"/>
@@ -39,7 +39,7 @@ This command adds the following to `generators.yml`:
39
39
40
40
### Generate the SDK
41
41
42
- Generate the SDK:
42
+ Run the following command to generate your SDK:
43
43
44
44
` ` ` bash
45
45
fern generate --group java-sdk
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Generate a PHP SDK by following the instructions on this page.
13
13
14
14
### Add the SDK generator
15
15
16
- Add the PHP SDK generator:
16
+ Run the following command to add the PHP SDK generator to ` generators.yml ` :
17
17
18
18
``` bash
19
19
fern add fern-php-sdk --group php-sdk
@@ -26,10 +26,10 @@ fern add fern-php-sdk --group php-sdk
26
26
` ruby-sdk ` , etc) in your organization.
27
27
</Note >
28
28
29
- This command adds the following to ` generators.yml ` :
29
+ This command adds the following ` group ` to ` generators.yml ` :
30
30
31
- ``` yaml
32
- php-sdk :
31
+ ``` yaml title="generators.yml"
32
+ php-sdk : # group name
33
33
generators :
34
34
- name : fernapi/fern-php-sdk
35
35
version : <Markdown src="/snippets/version-number-php.mdx"/>
@@ -40,7 +40,7 @@ This command adds the following to `generators.yml`:
40
40
41
41
### Generate the SDK
42
42
43
- Generate the SDK:
43
+ Run the following command to generate your SDK:
44
44
45
45
` ` ` bash
46
46
fern generate --group php-sdk
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Generate a Python SDK by following the instructions on this page.
12
12
13
13
### Add the SDK generator
14
14
15
- Add the Python SDK generator:
15
+ Run the following command to add the Python SDK generator to ` generators.yml ` :
16
16
17
17
``` bash
18
18
fern add fern-python-sdk --group python-sdk
@@ -25,10 +25,10 @@ fern add fern-python-sdk --group python-sdk
25
25
` ruby-sdk ` , etc) in your organization.
26
26
</Note >
27
27
28
- This command adds the following to ` generators.yml ` :
28
+ This command adds the following ` group ` to ` generators.yml ` :
29
29
30
- ``` yaml
31
- python-sdk :
30
+ ``` yaml title="generators.yml"
31
+ python-sdk : # group name
32
32
generators :
33
33
- name : fernapi/fern-python-sdk
34
34
version : <Markdown src="/snippets/version-number-python.mdx"/>
@@ -39,7 +39,7 @@ This command adds the following to `generators.yml`:
39
39
40
40
### Generate the SDK
41
41
42
- Generate the SDK:
42
+ Run the following command to generate your SDK:
43
43
44
44
` ` ` bash
45
45
fern generate --group python-sdk
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Generate a Ruby SDK by following the instructions on this page.
13
13
14
14
### Add the SDK generator
15
15
16
- Add the Ruby SDK generator:
16
+ Run the following command to add the Ruby SDK generator to ` generators.yml ` :
17
17
18
18
``` bash
19
19
fern add fern-ruby-sdk --group ruby-sdk
@@ -26,10 +26,10 @@ fern add fern-ruby-sdk --group ruby-sdk
26
26
` python-sdk ` , etc) in your organization.
27
27
</Note >
28
28
29
- This command adds the following to ` generators.yml ` :
29
+ This command adds the following ` group ` to ` generators.yml ` :
30
30
31
- ``` yaml
32
- ruby-sdk :
31
+ ``` yaml title="generators.yml"
32
+ ruby-sdk : # group name
33
33
generators :
34
34
- name : fernapi/fern-ruby-sdk
35
35
version : <Markdown src="/snippets/version-number-ruby.mdx"/>
@@ -40,7 +40,7 @@ This command adds the following to `generators.yml`:
40
40
41
41
### Generate the SDK
42
42
43
- Generate the SDK:
43
+ Run the following command to generate your SDK:
44
44
45
45
` ` ` bash
46
46
fern generate --group ruby-sdk
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Generate a TypeScript SDK by following the instructions on this page.
13
13
14
14
### Add the SDK generator
15
15
16
- Add the TypeScript SDK generator:
16
+ Run the following command to add the TypeScript SDK generator to ` generators.yml ` :
17
17
18
18
``` bash
19
19
fern add fern-typescript-sdk --group ts-sdk
@@ -26,10 +26,10 @@ fern add fern-typescript-sdk --group ts-sdk
26
26
` ruby-sdk ` , etc) in your organization.
27
27
</Note >
28
28
29
- This command adds the following to ` generators.yml ` :
29
+ This command adds the following ` group ` to ` generators.yml ` :
30
30
31
- ``` yaml
32
- ts-sdk :
31
+ ``` yaml title="generators.yml"
32
+ ts-sdk : # group name
33
33
generators :
34
34
- name : fernapi/fern-typescript-sdk
35
35
version : <Markdown src="/snippets/version-number-ts.mdx"/>
@@ -39,7 +39,7 @@ This command adds the following to `generators.yml`:
39
39
` ` `
40
40
### Generate the SDK
41
41
42
- Generate the SDK:
42
+ Run the following command to generate your SDK:
43
43
44
44
` ` ` bash
45
45
fern generate --group ts-sdk
You can’t perform that action at this time.
0 commit comments