Browse Source

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

visuddhinanda 1 tuần trước cách đây
mục cha
commit
34ec9599b3
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  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');
     }
 }