mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
14 lines
289 B
PHP
14 lines
289 B
PHP
<?php
|
|
|
|
namespace App\Traits;
|
|
|
|
use Illuminate\Support\Facades\Process;
|
|
|
|
trait Shared
|
|
{
|
|
public function get_workdir(string $type, string $resource_id, string $deployment_id)
|
|
{
|
|
$workdir = "/tmp/coolify/$type/{$resource_id}/{$deployment_id}/";
|
|
return $workdir;
|
|
}
|
|
}
|