소스 검색

add init:system.channel init:system.dict upgrade:dict

visuddhinanda 3 달 전
부모
커밋
34ec9599b3
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      api-v13/app/Console/Commands/PostInstall.php

+ 5 - 0
api-v13/app/Console/Commands/PostInstall.php

@@ -27,7 +27,12 @@ class DeplyInit extends Command
     {
         //
         $this->info('deploy init start');
+
         $this->call('create:opensearch.index');
+        $this->call('init:system.channel');
+        $this->call('init:system.dict');
+        $this->call('upgrade:dict');
+
         $this->info('deploy init done');
     }
 }