Skip to content

Commit 1d0f18b

Browse files
committed
docs: update landing page to be less misleading regarding "in-memory"
required because mongodb 7.0 does not have the public in-memory engine anymore. re #742 (comment)
1 parent 5c7e182 commit 1d0f18b

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

website/docusaurus.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ if (!baseUrl.endsWith('/')) {
1313

1414
module.exports = {
1515
title: 'mongodb-memory-server',
16-
tagline:
17-
'Spinning up mongod in memory for fast tests. If you run tests in parallel this lib helps to spin up dedicated mongodb servers for every test file in MacOS, *nix, Windows or CI environments (in most cases with zero-config).',
16+
tagline: 'Manage & spin up mongodb server binaries with zero(or slight) configuration for tests.',
1817
url: 'https://typegoose.github.io',
1918
baseUrl: baseUrl,
2019
favicon: 'img/favicon.ico',

website/src/pages/index.js

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,28 @@ import styles from './styles.module.css';
1010
const features = [
1111
{
1212
title: 'Easy to Use',
13-
description: <>mongodb-memory-server was build with "easy-to-use" in mind</>,
13+
description: (
14+
<>
15+
mongodb-memory-server was build with "easy-to-use" in mind and is in most common systems
16+
zero-configuration. (except setting a custom mongodb version)
17+
</>
18+
),
1419
},
1520
{
16-
title: 'Focus on What Matters',
17-
description: <>mongodb-memory-server can be quickly added to projects on many systems</>,
21+
title: 'Supports all MongoDB supports systems',
22+
description: (
23+
<>
24+
mongodb-memory-server supporst all systems there are mongodb binaries are for, including
25+
some unofficial environments where some other binary works.
26+
</>
27+
),
1828
},
1929
{
20-
title: 'Supports Many Systems',
30+
title: 'Supports both Single-Instance and Replica Sets',
2131
description: (
2232
<>
23-
mongodb-memory-server supports many different systems without problems (exceptions are some
24-
linux distributions)
33+
mongodb-memory-server can be quickly used with single mongodb instances or spin up a entire
34+
replicaset.
2535
</>
2636
),
2737
},
@@ -59,7 +69,7 @@ function Home() {
5969
'button button--outline button--secondary button--lg',
6070
styles.getStarted
6171
)}
62-
to={useBaseUrl('docs/')}
72+
to={useBaseUrl('docs/guides/quick-start-guide')}
6373
>
6474
Get Started
6575
</Link>

0 commit comments

Comments
 (0)