Skip to content

Commit ebce721

Browse files
Merge branch 'main' into glossary
2 parents 5ae9ce0 + 9c162bd commit ebce721

File tree

140 files changed

+116
-521
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+116
-521
lines changed

docusaurus.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,7 @@ module.exports = {
321321
},
322322
],
323323
],
324+
324325
scripts: [
325326
{
326327
src: "/docs/scripts/feedback.js",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
]
5151
},
5252
"devDependencies": {
53-
"@docusaurus/plugin-client-redirects": "^3.2.1",
53+
"@docusaurus/plugin-client-redirects": "^3.8.1",
5454
"@tailwindcss/typography": "^0.5.0",
5555
"autoprefixer": "^10.4.0",
5656
"docusaurus": "^1.14.7",

src/components/KeployCloud.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const KeployCloud = () => {
44
return (
55
<section
66
id="cloud"
7-
className="mb-12 mt-24 flex max-w-7xl items-center space-x-5 rounded-lg bg-[color:var(--ifm-card-background-color)] p-5"
7+
className="mb-8 mt-12 flex max-w-7xl items-center space-x-5 rounded-lg bg-[color:var(--ifm-card-background-color)] p-5"
88
>
99
<div className="prose prose-orange mx-auto max-w-3xl">
1010
<h1> Question? 🤔💭</h1>

src/components/QuickStart.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,6 @@ export const QuickStart = () => {
9797
<p className="text-lg font-semibold">MacOS</p>
9898
</Link>
9999
</div>
100-
<p className=" text-l mt-6 text-gray-500">
101-
⚠️ Please note that Keploy v2 is currently in development, with the best
102-
experience on Linux. Docker support is experimental and may have some
103-
limitations for certain use cases.
104-
</p>
105100
</section>
106101
);
107102
};

src/theme/DocItem/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import DocBreadcrumbs from "@theme/DocBreadcrumbs";
1919
import Layout from "@docusaurus/core/lib/client/theme-fallback/Layout";
2020
import Head from "@docusaurus/Head";
2121
import MDXContent from "@theme/MDXContent";
22+
import {KeployCloud} from "@site/src/components/KeployCloud";
2223

2324
export default function DocItem(props) {
2425
const {content: DocContent} = props;
@@ -105,7 +106,9 @@ export default function DocItem(props) {
105106
</article>
106107
</div>
107108
</article>
108-
109+
<div>
110+
<KeployCloud />
111+
</div>
109112
<DocPaginator previous={metadata.previous} next={metadata.next} />
110113
</div>
111114
</div>

src/theme/NotFound/Content/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function Index() {
1010
return (
1111
<>
1212
<PageMetadata title="Redirecting..." />
13-
<main className="container margin-vert--xl">
13+
<main className="margin-vert--xl container">
1414
<div className="row">
1515
<div className="col col--6 col--offset-3">
1616
<h1 className="hero__title">Redirecting to home page...</h1>

static/_redirects

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,10 @@
3636
# Dev tools redirects
3737
#
3838
/devtools/ui-contrib-guide /ui-contrib-guide
39+
40+
41+
# Redirect all v1 paths to v3 (with full docs path)
42+
/docs/1.0.0/* /docs/3.0.0/:splat
43+
44+
# Redirect all v2 paths to v3 (with full docs path)
45+
/docs/2.0.0/* /docs/3.0.0/:splat

versioned_docs/version-1.0.0/concepts/reference/glossary/behaviour-driven-development.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ tags:
77
- explanation
88
keywords:
99
- API
10+
- pytest
1011
---
1112

1213
Behavior-driven development (BDD) is an Agile software development methodology that encourages collaboration between developers, testers, and business stakeholders. BDD is based on the idea that the best way to ensure that software meets the needs of its users is to write tests that describe the desired behavior of the software in plain language.

versioned_docs/version-1.0.0/concepts/what-are-keploy-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords:
1212

1313
### 1. Convert API calls from anywhere to Test-Case
1414

15-
Keploy captures all the API calls and subsequent network traffic served by the application. You can use any existing API management tools like [Postman](https://www.postman.com/), [Curl](https://curl.se/) to generate test-case.
15+
Keploy captures all the API calls and subsequent network traffic served by the application. You can use any existing API management tools like Postman, curl to generate test-case.
1616

1717
<img src="/docs/img/record-api.gif?raw=true" width="80%" alt="API Tools"/>
1818

versioned_docs/version-1.0.0/go/quickstart/echo-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ go run handler.go main.go
4848

4949
## Generate testcases
5050

51-
To generate testcases we just need to **make some API calls.** You can use [Postman](https://www.postman.com/), or simply `curl`
51+
To generate testcases we just need to **make some API calls.** You can use Postman or simply `curl`
5252

5353
### 1. Generate shortened url
5454

0 commit comments

Comments
 (0)