1
0
Fork 0
mirror of synced 2024-06-29 11:40:45 +12:00
appwrite/app/config/runtimes.php
2021-04-29 17:08:59 +02:00

15 lines
339 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(filter: $allowList);
return $runtimes;