Add docs skeleton

This commit is contained in:
Richard Chien
2018-08-14 00:46:45 +08:00
parent 1a4afb3c10
commit e43f683935
9 changed files with 6358 additions and 4 deletions

21
docs/.vuepress/config.js Normal file
View File

@ -0,0 +1,21 @@
module.exports = {
title: 'NoneBot',
description: '基于酷 Q 的 Python 异步 QQ 机器人框架',
themeConfig: {
repo: 'richardchien/none-bot',
docsDir: 'docs',
editLinks: true,
editLinkText: '编辑页面',
lastUpdated: '上次更新',
nav: [
{ text: '指南', link: '/guide/' },
],
sidebar: {
'/guide/': [
'',
'installation',
'getting-started',
]
},
}
}