format markdown file
This commit is contained in:
parent
9e718da1b4
commit
f144995a17
43
README.md
43
README.md
|
@ -4,7 +4,7 @@ kylin-code fork 自 [Code OSS](https://github.com/microsoft/vscode) 项目,集
|
|||
|
||||
1. 下载源码:
|
||||
|
||||
git clone https://gitee.com/openkylin/kylin-code.git
|
||||
git clone https://gitee.com/openkylin/kylin-code.git
|
||||
|
||||
2. 安装指定版本nodejs:
|
||||
|
||||
|
@ -26,55 +26,42 @@ kylin-code fork 自 [Code OSS](https://github.com/microsoft/vscode) 项目,集
|
|||
|
||||
4. C/C++ compiler tool chain
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get update
|
||||
sudo apt-get install build-essential g++ libx11-dev libxkbfile-dev libsecret-1-dev
|
||||
|
||||
sudo apt-get install build-essential g++ libx11-dev libxkbfile-dev libsecret-1-dev
|
||||
|
||||
5. npm/yarn设置
|
||||
5. npm/yarn 设置
|
||||
|
||||
设置淘宝镜像(解决下载electron慢的问题)
|
||||
|
||||
yarn config set registry http://registry.npm.taobao.org/
|
||||
|
||||
npm config set registry https://registry.npm.taobao.org
|
||||
|
||||
在项目根目录新建文件.npmrc
|
||||
vim .npmrc
|
||||
|
||||
在其中添加 (注意,在.npmrc中必须小写,在环境变量中是大写)
|
||||
在项目根目录新建文件.npmrc, 在其中添加 (注意,在.npmrc中必须小写,在环境变量中是大写)
|
||||
|
||||
sass_binary_site=https://npm.taobao.org/mirrors/node-sass/
|
||||
|
||||
registry=https://registry.npm.taobao.org
|
||||
|
||||
electron_mirror=https://npm.taobao.org/mirrors/electron/
|
||||
|
||||
6. 安装依赖
|
||||
|
||||
cd kylin-code
|
||||
|
||||
yarn
|
||||
cd kylin-code
|
||||
yarn
|
||||
|
||||
7. 构建
|
||||
|
||||
yarn watch
|
||||
yarn watch
|
||||
|
||||
8. 运行
|
||||
|
||||
./scripts/code.sh
|
||||
./scripts/code.sh
|
||||
|
||||
9. 更换商店地址
|
||||
9. 配置商店地址
|
||||
|
||||
源码目录下product.json
|
||||
|
||||
open vsx开源插件商店:
|
||||
|
||||
"extensionsGallery": {
|
||||
在源码根目录下的 product.json 中添加如下json片段,配置 open vsx 开源插件商店:
|
||||
|
||||
```json
|
||||
"extensionsGallery": {
|
||||
"serviceUrl": "https://open-vsx.org/vscode/gallery",
|
||||
|
||||
"itemUrl": "https://open-vsx.org/vscode/item"
|
||||
|
||||
},
|
||||
|
||||
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue