Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #1139: remove non-existing document link #1140

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions website/pages/docs/sdk/swagger.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,15 @@ export default NESTIA_CONFIG;
# BUILD SWAGGER DOCUUMET ONLY
npx nestia swagger

# BUILD SWAGGER/OPENAI/SDK/E2E AT THE SAME TIME
# BUILD SWAGGER/SDK/E2E AT THE SAME TIME
npx nestia all
```
</Tab>
</Tabs>

Otherwise you want to generate a swagger file by CLI (Command Line Interface), configure `nestia.config.ts` file and run the `npx nestia swagger` command. Then, `@nestia/sdk` will analyze your NestJS backend server code, and generate `swagger.json` file.

When you want to build not only Swagger Document file, but also [OpenAI function calling schema](./openai), [SDK (Software Development Kit) library](./sdk) and [automated E2E (End-to-End) test functions](./e2e) at the same time, run `npx nestia all` command instead.
When you want to build not only Swagger Document file, but also [SDK (Software Development Kit) library](./sdk) and [automated E2E (End-to-End) test functions](./e2e) at the same time, run `npx nestia all` command instead.



Expand Down Expand Up @@ -1788,4 +1788,4 @@ const main = async (): Promise<void> => {
main().catch(console.error);
```
</Tab>
</Tabs>
</Tabs>
Loading