Просмотр исходного кода

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

visuddhinanda 1 неделя назад
Родитель
Сommit
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');
     }
 }