diff --git a/app/Models/DeploymentData/Process.php b/app/Models/DeploymentData/Process.php index 176806b..d25dbc7 100644 --- a/app/Models/DeploymentData/Process.php +++ b/app/Models/DeploymentData/Process.php @@ -310,7 +310,6 @@ public function asNodeTasks(Deployment $deployment): array 'ContainerSpec' => [ 'Image' => $this->dockerImage, 'Labels' => $labels, -// 'Command' => ['sh -c "' . Str::replace('"', '\\"', $worker->command) . '"'], 'Command' => ['sh', '-c'], 'Args' => [ $worker->command, diff --git a/config/data.php b/config/data.php new file mode 100644 index 0000000..b5b4ce6 --- /dev/null +++ b/config/data.php @@ -0,0 +1,31 @@ + [ + 'enabled' => true, + 'directories' => [app_path('')], + 'cache' => [ + 'store' => 'file', + 'prefix' => 'laravel-data', + 'duration' => null, + ], + 'reflection_discovery' => [ + 'enabled' => true, + 'base_path' => base_path(), + 'root_namespace' => null, + ], + ], +];