-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathdocusaurus.config.ts
More file actions
254 lines (238 loc) · 11.1 KB
/
docusaurus.config.ts
File metadata and controls
254 lines (238 loc) · 11.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
import {themes as prismThemes} from 'prism-react-renderer';
import type {Config} from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
const config: Config = {
title: 'Apache Ignite',
tagline: 'Distributed Database For High-Performance Applications With In-Memory Speed',
favicon: 'img/favicon.png',
// Future flags, see https://docusaurus.io/docs/api/docusaurus-config#future
future: {
v4: true, // Improve compatibility with the upcoming Docusaurus v4
},
// Enable Mermaid diagrams in Markdown
markdown: {
mermaid: true,
},
// Mermaid theme
themes: ['@docusaurus/theme-mermaid'],
// Set the production url of your site here
url: 'https://ignite.apache.org',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
// Can be overridden with BASE_URL environment variable for staging builds
baseUrl: process.env.BASE_URL || '/',
// Apache Software Foundation deployment config
organizationName: 'apache',
projectName: 'ignite-website',
// Documentation is built separately and merged into the final site.
// Links to /docs/ will appear broken during standalone builds but work in production.
onBrokenLinks: 'ignore',
onBrokenAnchors: 'ignore',
// Even if you don't use internationalization, you can use this field to set
// useful metadata like html lang. For example, if your site is Chinese, you
// may want to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
presets: [
[
'classic',
{
docs: false, // Disabled - will configure custom docs integration in WP10
blog: {
path: 'blog',
routeBasePath: 'blog',
showReadingTime: true,
postsPerPage: 10,
blogTitle: 'Apache Ignite Blog',
blogDescription: 'News, updates, and technical articles about Apache Ignite',
blogSidebarCount: 'ALL',
blogSidebarTitle: 'All Posts',
authorsMapPath: 'authors.yml',
onInlineAuthors: 'ignore',
feedOptions: {
type: 'all',
title: 'Apache Ignite Blog',
description: 'News, updates, and technical articles about Apache Ignite',
copyright: `Copyright © ${new Date().getFullYear()} The Apache Software Foundation`,
createFeedItems: async (params) => {
const {blogPosts, defaultCreateFeedItems, ...rest} = params;
// Filter out archived posts (pre-2025)
const recentPosts = blogPosts.filter((post) => {
const postDate = new Date(post.metadata.date);
return postDate >= new Date('2025-01-01');
});
return defaultCreateFeedItems({
blogPosts: recentPosts,
...rest,
});
},
},
editUrl: 'https://github.com/apache/ignite-website/tree/master/',
},
theme: {
customCss: './src/css/custom.css',
},
} satisfies Preset.Options,
],
],
plugins: [
[
'@docusaurus/plugin-client-redirects',
{
redirects: [
// Blog index pagination
{ from: '/blog/1/', to: '/blog' },
{ from: '/blog/2/', to: '/blog/page/2' },
{ from: '/blog/3/', to: '/blog/page/3' },
// Individual blog posts
// 2025 posts (November-December additions from main branch)
{ from: '/blog/whats-new-in-apache-ignite-3-1', to: '/blog/2025/11/03/apache-ignite-3-1' },
{ from: '/blog/getting-to-know-ignite3', to: '/blog/2025/11/11/getting-to-know-ignite3' },
{ from: '/blog/schema-design-for-distributed-systems-ai3', to: '/blog/2025/11/18/schema-design-for-distributed-systems-ai3' },
{ from: '/blog/apache-ignite-3-architecture-part-1', to: '/blog/2025/11/25/ignite3-architecture-p1' },
{ from: '/blog/apache-ignite-3-architecture-part-2', to: '/blog/2025/12/02/ignite3-architecture-p2' },
{ from: '/blog/apache-ignite-3-architecture-part-3', to: '/blog/2025/12/09/ignite3-architecture-p3' },
{ from: '/blog/apache-ignite-3-client-connections-handling', to: '/blog/2025/12/10/ignite3-client-connections' },
// 2025 posts (original)
{ from: '/blog/whats-new-in-apache-ignite-3-0', to: '/blog/2025/02/24/whats-new-in-apache-ignite-3-0' },
{ from: '/blog/apache-ignite-2-17-0', to: '/blog/2025/02/13/apache-ignite-2-17-0' },
{ from: '/blog/ignite-net-intel-cet-fix', to: '/blog/2024/11/22/apache-ignite-net-intel-cet-fix' },
{ from: '/blog/apache-ignite-2-16-0', to: '/blog/2023/12/25/apache-ignite-2-16-0' },
{ from: '/blog/apache-ignite-net-dynamic-linq', to: '/blog/2023/05/22/apache-ignite-net-dynamic-linq' },
{ from: '/blog/apache-ignite-2-13-0', to: '/blog/2022/04/28/apache-ignite-2-13-0' },
{ from: '/blog/apache-ignite-2-12-0', to: '/blog/2022/01/14/apache-ignite-2-12-0' },
{ from: '/blog/apache-ignite-2-11-1', to: '/blog/2021/12/21/apache-ignite-2-11-1' },
{ from: '/blog/apache-ignite-2-11-stabilization', to: '/blog/2021/09/20/apache-ignite-2-11-stabilization' },
{ from: '/blog/apache-ignite-momentum-highlights-from', to: '/blog/2021/09/14/apache-ignite-momentum-highlights-from' },
{ from: '/blog/apache-ignite-2-10-thin', to: '/blog/2021/03/18/apache-ignite-2-10-thin' },
{ from: '/blog/apache-ignite-2-9-released', to: '/blog/2020/11/05/apache-ignite-2-9-released' },
{ from: '/blog/ignite-2-8-released-less', to: '/blog/2020/03/11/ignite-2-8-released-less' },
{ from: '/blog/apache-ignite-2-7-deep', to: '/blog/2018/12/13/apache-ignite-2-7-deep' },
{ from: '/blog/apache-ignite-2-5-scaling', to: '/blog/2018/05/31/apache-ignite-2-5-scaling' },
{ from: '/blog/meltdown-and-spectre-patches-show', to: '/blog/2018/01/30/meltdown-and-spectre-patches-show' },
{ from: '/blog/protecting-apache-ignite-from-meltdown', to: '/blog/2018/01/08/protecting-apache-ignite-from-meltdown' },
{ from: '/blog/apache-ignite-2-4-brings', to: '/blog/2018/03/15/apache-ignite-2-4-brings' },
{ from: '/blog/apache-ignite-essentials-series-for', to: '/blog/2017/11/17/apache-ignite-essentials-series-for' },
{ from: '/blog/apache-ignite-2-3-more', to: '/blog/2017/11/01/apache-ignite-2-3-more' },
{ from: '/blog/apache-ignite-community-news-september', to: '/blog/2017/09/15/apache-ignite-community-news-september' },
{ from: '/blog/apache-ignite-community-update-august', to: '/blog/2017/08/30/apache-ignite-community-update-august' },
{ from: '/blog/apache-ignite-2-1-a', to: '/blog/2017/07/27/apache-ignite-2-1-a' },
{ from: '/blog/apache-ignite-2-0-redesigned', to: '/blog/2017/05/05/apache-ignite-2-0-redesigned' },
{ from: '/blog/presenting-apache-ignite-sql-grid', to: '/blog/2017/03/13/presenting-apache-ignite-sql-grid' },
{ from: '/blog/apache-ignite-1-9-released', to: '/blog/2017/03/07/apache-ignite-1-9-released' },
// Tag pages
{ from: '/blog/apache/', to: '/blog/tags/apache' },
{ from: '/blog/release/', to: '/blog/tags/release' },
{ from: '/blog/database/', to: '/blog/tags/database' },
{ from: '/blog/ignite/', to: '/blog/tags/ignite' },
{ from: '/blog/bigdata/', to: '/blog/tags/bigdata' },
{ from: '/blog/in/', to: '/blog/tags/in-memory' },
{ from: '/blog/memory/', to: '/blog/tags/in-memory' },
{ from: '/blog/open/', to: '/blog/tags/open-source' },
{ from: '/blog/source/', to: '/blog/tags/open-source' },
{ from: '/blog/meetup/', to: '/blog/tags/meetup' },
{ from: '/blog/archived/', to: '/blog/tags/archived' },
],
},
],
],
themeConfig: {
image: 'img/og-pic.png',
metadata: [
{
name: 'description',
content: 'Apache Ignite is a leading distributed database management system for high-performance computing with in-memory speed. Learn how to use the Ignite decentralized database system and get started.',
},
{
property: 'og:description',
content: 'Apache Ignite is a leading distributed database management system for high-performance computing with in-memory speed. Learn how to use the Ignite decentralized database system and get started.',
},
{name: 'twitter:card', content: 'summary_large_image'},
{name: 'twitter:site', content: '@ApacheIgnite'},
],
colorMode: {
defaultMode: 'light',
disableSwitch: true, // Current site doesn't have dark mode
respectPrefersColorScheme: false,
},
navbar: {
title: '',
logo: {
alt: 'Apache Ignite',
src: 'img/logo.svg',
srcDark: 'img/logo-white.svg',
},
style: 'primary',
items: [
{
label: 'Get Started',
position: 'left',
items: [
{label: 'Quick Start', to: '/docs/ignite3/3.1.0/getting-started/quick-start'},
{label: 'Developer Resources', to: '/resources'},
{label: 'Training and Courses', to: '/resources#training'},
{label: 'FAQ', to: '/faq'},
{label: 'Use Cases', to: '/use-cases'},
],
},
{
label: 'Features',
position: 'left',
items: [
{label: 'Multi-Tier Storage', to: '/arch/multi-tier-storage'},
{label: 'Native Persistence', to: '/arch/native-persistence'},
{label: 'Distributed SQL', to: '/features/sql'},
{label: 'ACID Transactions', to: '/features/acid-transactions'},
{label: 'Compute APIs', to: '/features/compute-apis'},
],
},
{
label: 'Community',
position: 'left',
items: [
{label: 'Project Info', to: '/community'},
{label: 'Events', to: '/events'},
],
},
{
label: 'Resources',
position: 'left',
items: [
{label: 'Blog', to: '/blog'},
{label: 'Developer Resources', to: '/resources'},
{label: 'Documentation', to: '/resources#documentation'},
{label: 'Training', to: '/resources#training'},
{label: 'Community', to: '/resources#community'},
{label: 'FAQ', to: '/faq'},
],
},
{
label: 'Blog',
to: '/blog/',
position: 'left',
},
{
label: 'Docs',
to: '/docs/',
position: 'left',
},
],
},
footer: {
style: 'dark',
links: [
// Footer links will be configured in WP2
],
copyright: `Copyright © ${new Date().getFullYear()} The Apache Software Foundation, Licensed under the Apache License, Version 2.0.`,
},
prism: {
theme: prismThemes.vsDark,
darkTheme: prismThemes.vsDark,
additionalLanguages: ['java', 'csharp', 'sql'],
},
} satisfies Preset.ThemeConfig,
};
export default config;