I started a discussion on this before, you can check it in the mail group https://lists.apache.org/thread/o770bc3k623kyfks2mzkt21qsc4g6328 In order to facilitate everyone to organize the documents, I created a new-docs directory under the incubator-doris directory. The new directory structure is below this. I just created a directory structure here, which needs to be rearranged. In the data import scenario, in order to take into account the viewing habits of previous users, the import is organized in two ways: 1. According to the usage scenario: This will give users clearer guidance. For example, the user is the data source of kafka, then the user can directly select the routine to load 2. According to the import method: it is the introduction of the various import methods we provided before In order to facilitate everyone to run and debug locally, I migrated the entire .vuepress under the original document. After completion, you only need to delete the original docs directory and rename the new new-docs directory to docs. At the same time, you can also run it locally, so that you can organize documents and know the content of each document directory. In the local debugging execution, switch to the new-docs directory and execute the following command: ```` npm install npm run dev ```` then through the browser http://ip:port/zh-CN http://ip:port/en
39 lines
944 B
JSON
39 lines
944 B
JSON
{
|
|
"name": "docs",
|
|
"private": true,
|
|
"description": "docs of doris",
|
|
"keywords": [
|
|
"doris",
|
|
"mysql"
|
|
],
|
|
"homepage": "https://github.com/apache/incubator-doris",
|
|
"bugs": {
|
|
"url": "https://github.com/apache/incubator-doris/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/apache/incubator-doris.git"
|
|
},
|
|
"license": "Apache",
|
|
"author": "Apache Doris",
|
|
"scripts": {
|
|
"build": "vuepress build . --temp .temp",
|
|
"dev": "vuepress dev . --temp .temp",
|
|
"lint": "markdownlint '**/*.md' -f"
|
|
},
|
|
"devDependencies": {
|
|
"@vuepress/plugin-back-to-top": "^1.3.1",
|
|
"@vuepress/plugin-medium-zoom": "^1.3.1",
|
|
"@vuepress/theme-vue": "^1.3.1",
|
|
"markdownlint": "^0.19.0",
|
|
"markdownlint-cli": "^0.22.0",
|
|
"vue-toasted": "^1.1.25",
|
|
"vuepress": "^1.3.1"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.19.2",
|
|
"parallax-js": "^3.1.0",
|
|
"vue-router": "3.4.5"
|
|
}
|
|
}
|