Commit 037e4ecb by tangjiale

添加注释

parent f505c0d3
......@@ -2,8 +2,8 @@
* @Author: tangjiale
* @eMail: 932055106@qq.com
* @Date: 2022-04-09 08:44:08
* @LastEditors: tangjiale
* @LastEditTime: 2022-09-28 15:51:33
* @LastEditors: Please set LastEditors
* @LastEditTime: 2023-03-17 17:02:23
-->
# 服务端访问域名:http://182.254.228.249:7001/csScreen/${type}/
......@@ -70,3 +70,20 @@
(1) 多url共用一个页面 如 '/html/a'与'/html/b' 多域名可指向同一页面
(2) 可自定义配置动态路由 1.`/html/${id}` 2.`/html/shops-${id}/` 3.`/html/${id}/${areaId}/`
(3) 可以根据 id 数据的不同 配置动态的seo信息 给不同的页面
# pm2进程管理常用命令
1.npm run build 2.npm run start
pm2 list # 显示所有进程状态
pm2 monit # 监视所有进程
pm2 logs # 显示所有进程日志
pm2 stop all # 停止所有进程
pm2 restart all # 重启所有进程
pm2 reload all # 0秒停机重载进程 (用于 NETWORKED 进程)
pm2 stop 0 # 停止指定的进程
pm2 restart 0 # 重启指定的进程
pm2 startup # 产生 init 脚本 保持进程活着
pm2 web # 运行健壮的 computer API endpoint
pm2 delete 0 # 杀死指定的进程
pm2 delete all # 杀死全部进程
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment