1
0
Fork 0
mirror of synced 2024-10-02 02:07:04 +13:00
appwrite/app/config/runtimes.php

15 lines
No EOL
373 B
PHP

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