You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/create/windows/index-windows.mdx
+4-1
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,9 @@ import Tabs from '@theme/Tabs';
10
10
importTabItemfrom'@theme/TabItem';
11
11
importuseBaseUrlfrom'@docusaurus/useBaseUrl';
12
12
importRedisCardfrom'@site/src/theme/RedisCard';
13
+
importAuthorsfrom'@site/src/theme/Authors';
14
+
15
+
<AuthorsfrontMatter={frontMatter} />
13
16
14
17
You can run Redis on Windows 10 using Windows Subsystem for Linux(a.k.a WSL2). WSL2 is a compatibility layer for running Linux binary executables natively on Windows 10 and Windows Server 2019. WSL2 lets developers run a GNU/Linux environment (that includes command-line tools, utilities, and applications) directly on Windows.
15
18
@@ -31,7 +34,7 @@ Reboot Windows after making the change — note that you only need to do this on
31
34
start ms-windows-store:
32
35
```
33
36
34
-
Then search for Ubuntu, or your preferred distribution of Linux, and download the latest version.
37
+
Then search for Ubuntu, or your preferred distribution of Linux, and download the latest version.
Copy file name to clipboardExpand all lines: docusaurus.config.js
+142-127
Original file line number
Diff line number
Diff line change
@@ -2,14 +2,22 @@ const path = require('path');
2
2
3
3
module.exports={
4
4
title: 'The Home of Redis Developers',
5
-
tagline: 'Learn all the best practices to get up and running with Redis in no time. Get started and discover the power of Redis, whether on your local machines or in the cloud.',
5
+
tagline:
6
+
'Learn all the best practices to get up and running with Redis in no time. Get started and discover the power of Redis, whether on your local machines or in the cloud.',
6
7
url: 'https://developer.redis.com',
7
8
baseUrl: '/',
8
9
onBrokenLinks: 'throw',
9
10
onBrokenMarkdownLinks: 'warn',
10
11
favicon: 'img/favicon.ico',
11
12
organizationName: 'redis-developer',// Usually your GitHub org/user name.
12
13
projectName: 'redis-developer',// Usually your repo name.
14
+
// Even if you don't use internalization, you can use this field to set useful
15
+
// metadata like html lang. For example, if your site is Chinese, you may want
0 commit comments