1
0
Fork 0
mirror of synced 2024-05-20 04:32:37 +12:00
appwrite/app/config/runtimes.php
2021-05-18 22:05:44 +03:00

15 lines
337 B
PHP

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