1
0
Fork 0
mirror of synced 2024-07-04 06:00:53 +12:00
appwrite/app/config/runtimes.php
2021-04-23 10:40:45 +02:00

15 lines
331 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_ENVS')) ? [] : \explode(',', App::getEnv('_APP_FUNCTIONS_ENVS'));
$runtimes = $runtimes->getAll(filter: $allowList);
return $runtimes;