Skip to content

Commit

Permalink
feat(doc): add replace service web static file doc (#1223)
Browse files Browse the repository at this point in the history
  • Loading branch information
jo-hnny authored Apr 23, 2021
1 parent 7ab9db8 commit e783e10
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion web/console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,13 @@ w2 start
- 业务管理: `npm run dev_project`
2. 进入已部署好的tke-stack控制台页面
3. `SwitchyOmega`选择情景模式为`whistle`
4. 刷新页面,检查项目运行前端页面是否已是本地开发修改过后的页面,简单的方法就是F12查看react-devtool中的componnets中的组件名称是否已经变为组件真实名称
4. 刷新页面,检查项目运行前端页面是否已是本地开发修改过后的页面,简单的方法就是F12查看react-devtool中的componnets中的组件名称是否已经变为组件真实名称

## 快速替换运服务器端的静态文件
主要是为了快速查看前端控制台的改动,而不用把整个项目完整build部署一次
1. `npm run build`打包项目;
2.`build/static/js/index2.js``build/static/js/project.js` ftp 传输到 global节点所在的机器上;
3. 以下命令均在global节点所在机器上执行;
4. 执行`kubectl get po -n tke |grep gateway`找到gateway的名称,自行替换下方命令gateway名称;
5. 执行 `kubectl cp index2.js tke-gateway-gt4qd://app/assets/static/js/ -n tke` 将index2.js替换,project.js同理;
6. 回到web页面,清除缓存,然后刷新页面就可以看到本次的改动了。

0 comments on commit e783e10

Please sign in to comment.