In order to cooperate with Doris's successful graduation from Apache, the Doris official website also needs a new look and more powerful feature, so we decided to redesign the Doris official website. The code and documents of the new official website are included in this PR. Since the new website is completely rewritten, the content and structure of the project are different from the previous one. In particular, the directory structure of documents has changed, and the number of documents is large, so the number of files in this PR is very large. In the old website,all English documents are in the en/ directory, and Chinese documents in the zh-CN/ directory, but in the new website,the documents are split into multiple directories according to the nav. The document's directory structure changes as follows: ``` docs (old website) | |—— .vuepress (library) | |—— en | | |—— admin-manual │ │ |—— advanced | | |—— article | | |—— benchmark | | |—— case-user | | |—— community | | |—— data-operate | | |—— data-table | | |—— design | | |—— developer-guide | | |—— downloads | | |—— ecosystem | | |—— faq | | |—— get-starting | | |—— install | | |—— sql-manual | | |—— summary | | |___ README.md | |—— zh-CN ... docs (new website) | |—— .vuepress (library) | |—— en | | |—— community (unchanged, community nav) │ │ |—— developer (new directory, developer nav) │ │ | |—— design (moved from en/design) │ │ | |__ developer-guide (moved from en/developer-guide) | | |—— docs (new directory, all children directories moved from en/, document nav) │ │ | |—— admin-manual │ │ | |—— advanced │ │ | |—— benchmark │ │ | |—— data-operate │ │ | |—— data-table │ │ | |—— ecosystem │ │ | |—— faq │ │ | |—— get-starting │ │ | |—— install │ │ | |—— sql-manual │ │ | |—— summary | | |—— downloads (unchanged, downloads nav) | | |—— userCase (moved from en/case-user, user nav) | | |___ README.md | |—— zh-CN ... ```
31 lines
896 B
JSON
31 lines
896 B
JSON
{
|
|
"name": "doris",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@vue/composition-api": "1.0.0-beta.21",
|
|
"@vuepress-reco/core": "^1.6.9",
|
|
"@vuepress-reco/vuepress-plugin-back-to-top": "^1.6.0",
|
|
"@vuepress-reco/vuepress-plugin-comments": "^1.6.0",
|
|
"@vuepress-reco/vuepress-plugin-loading-page": "^1.6.0",
|
|
"@vuepress-reco/vuepress-plugin-pagation": "^1.6.0",
|
|
"@vuepress/plugin-blog": "1.9.2",
|
|
"@vuepress/plugin-medium-zoom": "1.5.0",
|
|
"axios": "^0.21.1",
|
|
"docsearch.js": "2.6.3",
|
|
"md5": "2.2.1",
|
|
"vue-click-outside": "1.1.0",
|
|
"vue-demi": "^0.5.3",
|
|
"vuepress": "^1.9.7",
|
|
"vuepress-plugin-smooth-scroll": "^0.0.9"
|
|
},
|
|
"scripts": {
|
|
"dev": "vuepress dev . --host \"localhost\"",
|
|
"build": "vuepress build . --max-concurrency 100"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"description": ""
|
|
}
|