1
0
Fork 0
mirror of synced 2024-07-04 06:00:53 +12:00
appwrite/app/config/runtimes-v2.php
2024-04-01 13:02:47 +02:00

17 lines
359 B
PHP

<?php
/**
* List of Appwrite Cloud Functions supported runtimes
*/
use Appwrite\Runtimes\Runtimes;
use Utopia\System\System;
$runtimes = new Runtimes('v2');
$allowList = empty(System::getEnv('_APP_FUNCTIONS_RUNTIMES')) ? [] : \explode(',', System::getEnv('_APP_FUNCTIONS_RUNTIMES'));
$runtimes = $runtimes->getAll(true, $allowList);
return $runtimes;