Browse Source

update README.sh

warrior 3 months ago
parent
commit
d9e1d5dd65
2 changed files with 45 additions and 4 deletions
  1. 41 0
      README.md
  2. 4 4
      angular.json

+ 41 - 0
README.md

@@ -25,3 +25,44 @@ Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To u
 ## Further help
 
 To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
+
+
+- 安装配置
+``` bash
+# 安装
+npm install i
+```
+
+# 打包发布
+- Window安装配置环境变量 obsutil
+    - https://support.huaweicloud.com/utiltg-obs/obs_11_0001.html
+
+- 访问地址
+    - https://app.fmode.cn/dev/live/live/test
+
+# 开发环境(可公开AKSK)
+``` bash
+# 打包项目,携带应用前缀(index.html中相对路径将自动修复为/dev/crm前缀)
+# live-app 子项目名称
+# /dev/ 项目测试版上传路径
+# /dev/live nova-crm项目预留路径
+ng build live-app --base-href=/dev/live/
+
+# 清空旧文件目录
+obsutil rm obs://nova-cloud/dev/live -r -f -i=XSUWJSVMZNHLWFAINRZ1 -k=P4TyfwfDovVNqz08tI1IXoLWXyEOSTKJRVlsGcV6 -e="obs.cn-south-1.myhuaweicloud.com"
+
+# 同步文件目录
+obsutil sync ./dist/live-app/browser obs://nova-cloud/dev/live  -i=XSUWJSVMZNHLWFAINRZ1 -k=P4TyfwfDovVNqz08tI1IXoLWXyEOSTKJRVlsGcV6 -e="obs.cn-south-1.myhuaweicloud.com" -acl=public-read
+
+# 复制默认首页至项目路由(解决路径导航到错误页面问题)
+# 例如:https://app.fmode.cn/dev/live/live/test 匹配项目路由 /live/test 需要放置一个默认页面
+obsutil cp ./dist/live-app/browser/index.html obs://nova-cloud/dev/live/index.html  -i=XSUWJSVMZNHLWFAINRZ1 -k=P4TyfwfDovVNqz08tI1IXoLWXyEOSTKJRVlsGcV6 -e="obs.cn-south-1.myhuaweicloud.com" -acl=public-read
+
+# 授权公开可读
+obsutil chattri obs://nova-cloud/dev/live -r -f -i=XSUWJSVMZNHLWFAINRZ1 -k=P4TyfwfDovVNqz08tI1IXoLWXyEOSTKJRVlsGcV6 -e="obs.cn-south-1.myhuaweicloud.com" -acl=public-read
+```
+
+# 超级权限(内部机密AKSK)
+``` bash
+hcloud CDN CreateRefreshTasks/v2 --cli-region="cn-north-1" --refresh_task.urls.1="https://app.fmode.cn/dev/live/" --refresh_task.type="directory" --cli-access-key=2BFF7JWXAIJ0UGNJ0OSB --cli-secret-key=NaPCiJCGmD3nklCzX65s8mSK1Py13ueyhgepa0s1
+```

+ 4 - 4
angular.json

@@ -148,13 +148,13 @@
               "budgets": [
                 {
                   "type": "initial",
-                  "maximumWarning": "500kB",
-                  "maximumError": "1MB"
+                  "maximumWarning": "2MB",
+                  "maximumError": "10MB"
                 },
                 {
                   "type": "anyComponentStyle",
-                  "maximumWarning": "2kB",
-                  "maximumError": "4kB"
+                  "maximumWarning": "10kB",
+                  "maximumError": "20kB"
                 }
               ],
               "outputHashing": "all"