Skip to content
This repository was archived by the owner on May 11, 2020. It is now read-only.

Commit fb19b68

Browse files
committedDec 20, 2019
Prepare doc for publication
1 parent 27a79dd commit fb19b68

File tree

4 files changed

+12
-20
lines changed

4 files changed

+12
-20
lines changed
 

‎website/i18n/en.json

-4
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,10 @@
4848
},
4949
"links": {
5050
"Quick start": "Quick start",
51-
"Guides": "Guides",
52-
"Explanations": "Explanations",
5351
"References": "References"
5452
},
5553
"categories": {
5654
"Tutorials": "Tutorials",
57-
"Guides": "Guides",
58-
"Explanations": "Explanations",
5955
"References": "References"
6056
}
6157
},

‎website/pages/en/index.js

+10
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,16 @@ class HomeSplash extends React.Component {
4747
<div className="inner">
4848
<ProjectTitle siteConfig={siteConfig} />
4949
</div>
50+
<h3>Why ?</h3>
51+
<p>For a long time, the idea of having a system to record API calls to use them in functional or e2e tests has been making its mark. We have tried several tools:</p>
52+
53+
<p> * Polly.js with its REST recording. But Polly imposes a lot of configuration, and leaves you too dependent on the library in the tests.<br />
54+
* RestBird. The project is still a little young, the documentation still too incomplete. And above all, you can only launch the mock server on localhost, which is a problem within docker-compose.<br />
55+
* Http Toolkit. You have to pay to enjoy all the features, and it does not really work as an API server (mocked), but more as a request interceptor.<br />
56+
* Mock server. Probably the most attractive project, but it seems really too complicated!</p>
57+
58+
<p>So no project that really matched the need.<br />
59+
Web Myna will do it</p>
5060
</SplashContainer>
5161
);
5262
}

‎website/sidebars.json

-14
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,6 @@
33
"Tutorials": [
44
"tutorials/tuto-quick-start"
55
],
6-
"Guides": [
7-
"how-to/howto-authentication",
8-
"how-to/howto-manage-apis",
9-
"how-to/howto-environment-variables",
10-
"how-to/howto-docker",
11-
"how-to/howto-contribute"
12-
],
13-
"Explanations": [
14-
"explanation/explanation-environment-variables",
15-
"explanation/explanation-har",
16-
"explanation/explanation-middleware",
17-
"explanation/explanation-reverse-proxy",
18-
"explanation/explanation-cli"
19-
],
206
"References": [
217
"references/references"
228
]

‎website/siteConfig.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ const siteConfig = {
3535
// For no header links in the top nav bar -> headerLinks: [],
3636
headerLinks: [
3737
{doc: 'tutorials/tuto-quick-start', label: 'Quick start'},
38-
{doc: 'how-to/howto-authentication', label: 'Guides'},
39-
{doc: 'explanation/explanation-environment-variables', label: 'Explanations'},
38+
// {doc: 'how-to/howto-authentication', label: 'Guides'},
39+
// {doc: 'explanation/explanation-environment-variables', label: 'Explanations'},
4040
{doc: 'references/references', label: 'References'},
4141
// { doc: 'doc4', label: 'API' },
4242
// { page: 'help', label: 'Help' },

0 commit comments

Comments
 (0)