Skip to content

Commit 209bbc7

Browse files
authored
Merge pull request #10 from refly-ai/docs/add-ollama-guide
Docs/add ollama guide
2 parents 80b496f + a54e916 commit 209bbc7

Some content is hidden

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

46 files changed

+992
-167
lines changed

.vitepress/config.ts

+109-103
Original file line numberDiff line numberDiff line change
@@ -1,159 +1,167 @@
1-
import { defineConfig } from "vitepress";
1+
import { defineConfig } from 'vitepress';
22

33
// Single navigation item
44
const enNav = [
5-
{ text: "Refly", link: "https://refly.ai" },
5+
{ text: 'Refly', link: 'https://refly.ai' },
66
{
7-
text: "Add to Chrome",
8-
link: "https://chromewebstore.google.com/detail/lecbjbapfkinmikhadakbclblnemmjpd",
7+
text: 'Add to Chrome',
8+
link: 'https://chromewebstore.google.com/detail/lecbjbapfkinmikhadakbclblnemmjpd',
99
},
10-
{ text: "Community", link: "/community/contact-us" },
10+
{ text: 'Community', link: '/community/contact-us' },
1111
{
12-
text: "v0.3.0",
13-
items: [{ text: "Changelog", link: "/changelog/v0.3.0" }],
12+
text: 'v0.3.0',
13+
items: [{ text: 'Changelog', link: '/changelog/v0.3.0' }],
1414
},
1515
];
1616

1717
const zhNav = [
18-
{ text: "Refly", link: "https://refly.ai" },
18+
{ text: 'Refly', link: 'https://refly.ai' },
1919
{
20-
text: "添加到 Chrome",
21-
link: "https://chromewebstore.google.com/detail/lecbjbapfkinmikhadakbclblnemmjpd",
20+
text: '添加到 Chrome',
21+
link: 'https://chromewebstore.google.com/detail/lecbjbapfkinmikhadakbclblnemmjpd',
2222
},
23-
{ text: "社区", link: "/zh/community/contact-us" },
23+
{ text: '社区', link: '/zh/community/contact-us' },
2424
{
25-
text: "v0.3.0",
26-
items: [{ text: "更新日志", link: "/zh/changelog/v0.3.0" }],
25+
text: 'v0.3.0',
26+
items: [{ text: '更新日志', link: '/zh/changelog/v0.3.0' }],
2727
},
2828
];
2929

3030
// Sidebar translations
3131
const sidebar = {
3232
en: [
3333
{
34-
text: "Getting Started",
35-
items: [{ text: "Welcome to Refly", link: "/" }],
34+
text: 'Getting Started',
35+
items: [{ text: 'Welcome to Refly', link: '/' }],
3636
},
3737
{
38-
text: "Guide",
38+
text: 'Guide',
3939
items: [
40-
{ text: "Crash Course", link: "/guide/crash-course" },
41-
{ text: "Self-Deploy", link: "/guide/self-deploy" },
42-
{ text: "Configuration", link: "/guide/configuration" },
43-
{ text: "Chrome Extension", link: "/guide/chrome-extension" },
40+
{ text: 'Crash Course', link: '/guide/crash-course' },
41+
{
42+
text: 'Self-Deploy',
43+
link: '/guide/self-deploy',
44+
items: [{ text: 'Ollama', link: '/guide/self-deploy/ollama' }],
45+
},
46+
{ text: 'Configuration', link: '/guide/configuration' },
47+
{ text: 'Chrome Extension', link: '/guide/chrome-extension' },
4448
],
4549
},
4650
{
47-
text: "Community",
48-
items: [{ text: "Contact Us", link: "/community/contact-us" }],
51+
text: 'Community',
52+
items: [{ text: 'Contact Us', link: '/community/contact-us' }],
4953
},
5054
{
51-
text: "About",
55+
text: 'About',
5256
items: [
53-
{ text: "Privacy Policy", link: "/about/privacy-policy" },
54-
{ text: "Terms of Service", link: "/about/terms-of-service" },
57+
{ text: 'Privacy Policy', link: '/about/privacy-policy' },
58+
{ text: 'Terms of Service', link: '/about/terms-of-service' },
5559
],
5660
},
5761
{
58-
text: "Changelog",
62+
text: 'Changelog',
5963
items: [
60-
{ text: "v0.3.0", link: "/changelog/v0.3.0" },
61-
{ text: "v0.2.4", link: "/changelog/v0.2.4" },
62-
{ text: "v0.2.3", link: "/changelog/v0.2.3" },
63-
{ text: "v0.2.2", link: "/changelog/v0.2.2" },
64-
{ text: "v0.2.1", link: "/changelog/v0.2.1" },
65-
{ text: "v0.2.0", link: "/changelog/v0.2.0" },
66-
{ text: "v0.1.2", link: "/changelog/v0.1.2" },
67-
{ text: "v0.1.1", link: "/changelog/v0.1.1" },
64+
{ text: 'v0.3.0', link: '/changelog/v0.3.0' },
65+
{ text: 'v0.2.4', link: '/changelog/v0.2.4' },
66+
{ text: 'v0.2.3', link: '/changelog/v0.2.3' },
67+
{ text: 'v0.2.2', link: '/changelog/v0.2.2' },
68+
{ text: 'v0.2.1', link: '/changelog/v0.2.1' },
69+
{ text: 'v0.2.0', link: '/changelog/v0.2.0' },
70+
{ text: 'v0.1.2', link: '/changelog/v0.1.2' },
71+
{ text: 'v0.1.1', link: '/changelog/v0.1.1' },
6872
],
6973
},
7074
],
7175
zh: [
7276
{
73-
text: "入门",
74-
items: [{ text: "欢迎使用 Refly", link: "/zh" }],
77+
text: '入门',
78+
items: [{ text: '欢迎使用 Refly', link: '/zh' }],
7579
},
7680
{
77-
text: "指南",
81+
text: '指南',
7882
items: [
79-
{ text: "快速上手", link: "/zh/guide/crash-course" },
80-
{ text: "自主部署", link: "/zh/guide/self-deploy" },
81-
{ text: "配置", link: "/zh/guide/configuration" },
82-
{ text: "Chrome 插件", link: "/zh/guide/chrome-extension" },
83+
{ text: '快速上手', link: '/zh/guide/crash-course' },
84+
{
85+
text: '私有部署',
86+
link: '/zh/guide/self-deploy/index',
87+
items: [{ text: 'Ollama', link: '/zh/guide/self-deploy/ollama' }],
88+
},
89+
{ text: '配置', link: '/zh/guide/configuration' },
90+
{ text: 'Chrome 插件', link: '/zh/guide/chrome-extension' },
8391
],
8492
},
8593
{
86-
text: "社区",
87-
items: [{ text: "联系我们", link: "/zh/community/contact-us" }],
94+
text: '社区',
95+
items: [{ text: '联系我们', link: '/zh/community/contact-us' }],
8896
},
8997
{
90-
text: "关于",
98+
text: '关于',
9199
items: [
92-
{ text: "隐私政策", link: "/zh/about/privacy-policy" },
93-
{ text: "服务条款", link: "/zh/about/terms-of-service" },
100+
{ text: '隐私政策', link: '/zh/about/privacy-policy' },
101+
{ text: '服务条款', link: '/zh/about/terms-of-service' },
94102
],
95103
},
96104
{
97-
text: "更新日志",
105+
text: '更新日志',
98106
items: [
99-
{ text: "v0.3.0", link: "/zh/changelog/v0.3.0" },
100-
{ text: "v0.2.4", link: "/zh/changelog/v0.2.4" },
101-
{ text: "v0.2.3", link: "/zh/changelog/v0.2.3" },
102-
{ text: "v0.2.2", link: "/zh/changelog/v0.2.2" },
103-
{ text: "v0.2.1", link: "/zh/changelog/v0.2.1" },
104-
{ text: "v0.2.0", link: "/zh/changelog/v0.2.0" },
105-
{ text: "v0.1.2", link: "/zh/changelog/v0.1.2" },
106-
{ text: "v0.1.1", link: "/zh/changelog/v0.1.1" },
107+
{ text: 'v0.3.0', link: '/zh/changelog/v0.3.0' },
108+
{ text: 'v0.2.4', link: '/zh/changelog/v0.2.4' },
109+
{ text: 'v0.2.3', link: '/zh/changelog/v0.2.3' },
110+
{ text: 'v0.2.2', link: '/zh/changelog/v0.2.2' },
111+
{ text: 'v0.2.1', link: '/zh/changelog/v0.2.1' },
112+
{ text: 'v0.2.0', link: '/zh/changelog/v0.2.0' },
113+
{ text: 'v0.1.2', link: '/zh/changelog/v0.1.2' },
114+
{ text: 'v0.1.1', link: '/zh/changelog/v0.1.1' },
107115
],
108116
},
109117
],
110118
};
111119

112120
export default defineConfig({
113121
// Site metadata
114-
title: "Refly Docs",
115-
description: "Refly Documentation",
122+
title: 'Refly Docs',
123+
description: 'Refly Documentation',
116124

117125
// Remove .html extensions from URLs
118126
cleanUrls: true,
119127

120128
// Configure head
121-
head: [["link", { rel: "icon", href: "/logo/logo.svg" }]],
129+
head: [['link', { rel: 'icon', href: '/logo/logo.svg' }]],
122130

123131
// i18n configuration
124132
locales: {
125133
root: {
126-
label: "English",
127-
lang: "en",
128-
title: "Refly Docs",
129-
description: "Refly Documentation",
134+
label: 'English',
135+
lang: 'en',
136+
title: 'Refly Docs',
137+
description: 'Refly Documentation',
130138
themeConfig: {
131139
nav: enNav,
132140
sidebar: sidebar.en,
133-
siteTitle: "Refly Docs",
134-
outlineTitle: "On this page",
141+
siteTitle: 'Refly Docs',
142+
outlineTitle: 'On this page',
135143
docFooter: {
136-
prev: "Previous page",
137-
next: "Next page",
144+
prev: 'Previous page',
145+
next: 'Next page',
138146
},
139-
returnToTopLabel: "Return to top",
140-
sidebarMenuLabel: "Menu",
141-
darkModeSwitchLabel: "Theme",
147+
returnToTopLabel: 'Return to top',
148+
sidebarMenuLabel: 'Menu',
149+
darkModeSwitchLabel: 'Theme',
142150
search: {
143-
provider: "local",
151+
provider: 'local',
144152
options: {
145153
translations: {
146154
button: {
147-
buttonText: "Search",
148-
buttonAriaLabel: "Search",
155+
buttonText: 'Search',
156+
buttonAriaLabel: 'Search',
149157
},
150158
modal: {
151-
noResultsText: "No results for",
152-
resetButtonTitle: "Reset search",
159+
noResultsText: 'No results for',
160+
resetButtonTitle: 'Reset search',
153161
footer: {
154-
selectText: "to select",
155-
navigateText: "to navigate",
156-
closeText: "to close",
162+
selectText: 'to select',
163+
navigateText: 'to navigate',
164+
closeText: 'to close',
157165
},
158166
},
159167
},
@@ -162,37 +170,37 @@ export default defineConfig({
162170
},
163171
},
164172
zh: {
165-
label: "简体中文",
166-
lang: "zh",
167-
title: "Refly 文档",
168-
description: "Refly 开发文档",
173+
label: '简体中文',
174+
lang: 'zh',
175+
title: 'Refly 文档',
176+
description: 'Refly 开发文档',
169177
themeConfig: {
170178
nav: zhNav,
171179
sidebar: sidebar.zh,
172-
siteTitle: "Refly 文档",
173-
outlineTitle: "本页目录",
180+
siteTitle: 'Refly 文档',
181+
outlineTitle: '本页目录',
174182
docFooter: {
175-
prev: "上一页",
176-
next: "下一页",
183+
prev: '上一页',
184+
next: '下一页',
177185
},
178-
returnToTopLabel: "返回顶部",
179-
sidebarMenuLabel: "菜单",
180-
darkModeSwitchLabel: "主题",
186+
returnToTopLabel: '返回顶部',
187+
sidebarMenuLabel: '菜单',
188+
darkModeSwitchLabel: '主题',
181189
search: {
182-
provider: "local",
190+
provider: 'local',
183191
options: {
184192
translations: {
185193
button: {
186-
buttonText: "搜索",
187-
buttonAriaLabel: "搜索",
194+
buttonText: '搜索',
195+
buttonAriaLabel: '搜索',
188196
},
189197
modal: {
190-
noResultsText: "未找到相关结果",
191-
resetButtonTitle: "清除搜索",
198+
noResultsText: '未找到相关结果',
199+
resetButtonTitle: '清除搜索',
192200
footer: {
193-
selectText: "选择",
194-
navigateText: "切换",
195-
closeText: "关闭",
201+
selectText: '选择',
202+
navigateText: '切换',
203+
closeText: '关闭',
196204
},
197205
},
198206
},
@@ -205,21 +213,19 @@ export default defineConfig({
205213
themeConfig: {
206214
// Logo configuration
207215
logo: {
208-
light: "/logo/logo.svg",
209-
dark: "/logo/logo.svg",
216+
light: '/logo/logo.svg',
217+
dark: '/logo/logo.svg',
210218
},
211219

212220
// Social links
213-
socialLinks: [
214-
{ icon: "github", link: "https://github.com/refly-ai/refly" },
215-
],
221+
socialLinks: [{ icon: 'github', link: 'https://github.com/refly-ai/refly' }],
216222

217223
// Language selection
218-
langMenuLabel: "Change Language",
224+
langMenuLabel: 'Change Language',
219225

220226
// Enable search
221227
search: {
222-
provider: "local",
228+
provider: 'local',
223229
},
224230
},
225231
});

0 commit comments

Comments
 (0)