1
0
Fork 0
mirror of synced 2024-07-02 05:00:33 +12:00
appwrite/app/config/runtimes.php
2023-09-12 20:53:16 +05:30

17 lines
343 B
PHP

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