Skip to content

Commit 5708825

Browse files
committed
refactor: v3
Signed-off-by: Neha Gupta <gneha21@yahoo.in>
1 parent c747f02 commit 5708825

File tree

128 files changed

+18014
-217
lines changed

Some content is hidden

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

128 files changed

+18014
-217
lines changed

docusaurus.config.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,15 +220,20 @@ module.exports = {
220220
* in `/docs/next` directory, only versioned docs.
221221
*/
222222
// excludeNextVersionDocs: false,
223-
lastVersion: "2.0.0",
223+
lastVersion: "3.0.0",
224224
versions: {
225225
"1.0.0": {
226226
label: "1.0.0",
227227
path: "1.0.0",
228228
banner: "unmaintained",
229229
},
230+
"2.0.0": {
231+
label: "2.0.0",
232+
path: "2.0.0",
233+
banner: "unmaintained",
234+
},
230235
},
231-
onlyIncludeVersions: ["1.0.0", "2.0.0"],
236+
onlyIncludeVersions: ["1.0.0", "2.0.0", "3.0.0"],
232237
includeCurrentVersion: true, // excludeNextVersionDocs is now deprecated
233238
// // below remark plugin disabled until we can figure out why it is not transpiling to ESNext properly - swyx
234239
remarkPlugins: [

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
"@docusaurus/plugin-sitemap": "^3.2.1",
2525
"@docusaurus/preset-classic": "^3.2.1",
2626
"@mdx-js/react": "^3.0.0",
27+
"ajv": "^6.12.6",
28+
"ajv-keywords": "^3.5.2",
2729
"clsx": "^2.0.0",
2830
"lint": "^0.8.19",
2931
"prism-react-renderer": "^2.1.0",

sidebars.js

Lines changed: 0 additions & 215 deletions
Original file line numberDiff line numberDiff line change
@@ -1,215 +0,0 @@
1-
module.exports = {
2-
// Keploy Explanation Sidebar
3-
sidebarExplanation: [
4-
{
5-
type: "category",
6-
label: "Explanation",
7-
collapsible: true,
8-
collapsed: false,
9-
items: [
10-
"keploy-explained/introduction",
11-
"keploy-explained/how-keploy-works",
12-
"keploy-explained/why-keploy",
13-
"keploy-explained/faq",
14-
"keploy-explained/common-errors",
15-
],
16-
},
17-
{
18-
type: "category",
19-
label: "Simplification",
20-
collapsible: true,
21-
collapsed: false,
22-
// link: {
23-
// type: "doc",
24-
// id: "concepts/general-glossary",
25-
// },
26-
items: ["concepts/general-glossary"],
27-
},
28-
],
29-
30-
// Keploy Go Sidebar
31-
sidebarInstallation: [
32-
{
33-
type: "category",
34-
label: "Installation",
35-
collapsible: true,
36-
collapsed: false,
37-
items: ["server/server-installation", "server/sdk-installation"],
38-
},
39-
{
40-
type: "category",
41-
label: "Concepts",
42-
collapsible: true,
43-
collapsed: false,
44-
// link: {
45-
// type: "doc",
46-
// id: "concepts/index",
47-
// },
48-
items: [
49-
"concepts/what-is-keploy",
50-
"concepts/what-are-keploy-features",
51-
"concepts/what-is-keploy-sdk",
52-
"concepts/what-are-keploy-sdk-modes",
53-
],
54-
},
55-
{
56-
type: "category",
57-
label: "Operations",
58-
collapsible: true,
59-
collapsed: false,
60-
link: {
61-
type: "doc",
62-
id: "operation/index",
63-
},
64-
items: [
65-
"operation/web-ui-operations",
66-
"operation/record-operations",
67-
"operation/test-operations",
68-
"operation/browser-extension-operations",
69-
],
70-
},
71-
72-
// // Integration
73-
// {
74-
// type: "doc",
75-
// label: "Integration",
76-
// id: "go/integration",
77-
// },
78-
// // Record Test
79-
// {
80-
// type: "doc",
81-
// label: "Record Test",
82-
// id: "go/record",
83-
// },
84-
// // Replay Test
85-
// {
86-
// type: "doc",
87-
// label: "Replay Test ",
88-
// id: "go/replay",
89-
// },
90-
91-
// // Quickstarts
92-
// {
93-
// type: "category",
94-
// label: "Sample Quickstarts",
95-
// collapsible: true,
96-
// collapsed: true,
97-
// link: {
98-
// type: "doc",
99-
// id: "go/quickstart/index",
100-
// },
101-
// items: [
102-
// "go/quickstart/echo-sql",
103-
// "go/quickstart/gin-mongo",
104-
// "go/quickstart/gin-mongo-2",
105-
// "go/quickstart/gorillamux-redis"
106-
// ],
107-
// },
108-
// {
109-
// type: "link",
110-
// label: "Go Pkg Reference",
111-
// href: "https://pkg.go.dev/github.com/keploy/go-sdk",
112-
// },
113-
// ],
114-
// },
115-
116-
// Java SDK
117-
// {
118-
// type: "category",
119-
// label: "Java",
120-
// collapsible: true,
121-
// collapsed: true,
122-
// link: {
123-
// type: "doc",
124-
// id: "java/quickstart/index",
125-
// },
126-
// items: [
127-
128-
// // Installation
129-
// {
130-
// type: "doc",
131-
// label: "Installation",
132-
// id: "java/installation",
133-
// },
134-
135-
// // Integration
136-
// {
137-
// type: "doc",
138-
// label: "Integration",
139-
// id: "java/integration",
140-
// },
141-
// // Record Test
142-
// {
143-
// type: "doc",
144-
// label: "Record Test",
145-
// id: "java/record",
146-
// },
147-
// // Replay Test
148-
// {
149-
// type: "doc",
150-
// label: "Replay Test ",
151-
// id: "java/replay",
152-
// },
153-
154-
// // Quickstarts
155-
// {
156-
// type: "category",
157-
// label: "Sample Quickstarts",
158-
// collapsible: true,
159-
// collapsed: true,
160-
// link: {
161-
// type: "doc",
162-
// id: "java/quickstart/index",
163-
// },
164-
// items: [
165-
// "java/quickstart/spring-sql",
166-
// ],
167-
// },
168-
// {
169-
// type: "link",
170-
// label: "Maven Reference",
171-
// href: "https://search.maven.org/artifact/io.keploy/keploy-sdk",
172-
// },
173-
// ],
174-
// },
175-
176-
//Ts SDK
177-
// {
178-
// type: "category",
179-
// label: "Typescript SDK",
180-
// collapsible: true,
181-
// collapsed: true,
182-
// link: {
183-
// type: "doc",
184-
// id: "typescript/installation",
185-
// },
186-
// items: [
187-
// "typescript/installation",
188-
// "typescript/generate-tests",
189-
// "typescript/supported-frameworks",
190-
// "typescript/mock-library",
191-
// "typescript/testing",
192-
// ],
193-
// },
194-
// ],
195-
196-
// // Keploy Contributions Sidebar
197-
// sidebarContributions: [
198-
// {
199-
// type: "category",
200-
// label: "Contribution Guides",
201-
// collapsible: true,
202-
// collapsed: false,
203-
// link: {
204-
// type: "doc",
205-
// id: "devtools/introduction",
206-
// },
207-
// items: [
208-
// "devtools/sdk-contrib-guide",
209-
// "devtools/server-contrib-guide",
210-
// "devtools/ui-contrib-guide",
211-
// "devtools/docs-contrib-guide",
212-
// ],
213-
// },
214-
],
215-
};

0 commit comments

Comments
 (0)