改进文档。

This commit is contained in:
luk.lu
2019-05-20 12:01:26 +08:00
parent c5348537ba
commit b423dfdbf4

View File

@@ -16,11 +16,11 @@
+ nodejs + nodejs
+ For support on installing nodejs, see <https://git.faronear.org/tic/doc/src/master/InstallationGuide/nodejs.md> + For support on installing nodejs, see <https://git.faronear.org/tic/doc/src/master/toolGuide/nodejs.md>
+ git + git
+ For support on installing git, see <https://git.faronear.org/tic/doc/src/master/InstallationGuide/git.md> + For support on installing git, see <https://git.faronear.org/tic/doc/src/master/toolGuide/git.md>
+ node.server + node.server
@@ -28,7 +28,7 @@
## 2. Preparation ## 2. Preparation
2.1 Download source code 2.1 Download source code/下载源码
``` ```
git clone https://git.faronear.org/tic/node.console.web git clone https://git.faronear.org/tic/node.console.web
@@ -36,7 +36,7 @@ cd node.console.web
git checkout master git checkout master
``` ```
2.2 Install dependencies 2.2 Install dependencies/安装依赖
``` ```
npm install npm install
@@ -44,25 +44,25 @@ npm install
## 3. Launch ## 3. Launch
1. `run lint` to format files 1. `lint` to format files
``` ```
npm run lint npm run lint
``` ```
2. `run dev` to test source code and 'hot-start' in a local web server 2. `dev` to test source code and 'hot-start' in a local web server
``` ```
npm run dev npm run dev
``` ```
3. `run dist` to pack source code into html/css/js for distribution 3. `dist` to pack source code into html/css/js for distribution
``` ```
npm run dist npm run dist
``` ```
4. `run deploy` to upload distribution to remote host 4. `deploy` to upload distribution to a TIC node host
``` ```
npm run deploy -- -p '远程登录密码' -k "用户私钥文件" -u '远程登录用户' -r '远程路径' -H '远程主机' -P '远程端口' npm run deploy -- -p '远程登录密码' -k "用户私钥文件" -u '远程登录用户' -r '远程路径' -H '远程主机' -P '远程端口'
@@ -72,9 +72,9 @@ npm install
node deploy.js -p 远程登录密码' -k "用户私钥文件" -u '远程登录用户' -r '远程路径' -H '远程主机' -P '远程端口' node deploy.js -p 远程登录密码' -k "用户私钥文件" -u '远程登录用户' -r '远程路径' -H '远程主机' -P '远程端口'
``` ```
5. `run daemon` to launch web server on remote host 5. `daemon` to launch web server on a TIC node host
登录到远程主机,下载并进入代码目录,然后启动 web 服务: 登录到一台 TIC 节点主机,下载并进入代码目录,然后启动 web 服务:
``` ```
npm run daemon npm run daemon
``` ```