1
0
Fork 0
mirror of synced 2024-06-03 03:14:50 +12:00
appwrite/app/config/runtimes.php
2022-05-23 14:54:50 +00:00

17 lines
343 B
PHP

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