1
0
Fork 0
mirror of synced 2024-07-04 14:10:33 +12:00
appwrite/app/config/runtimes-v2.php

17 lines
343 B
PHP
Raw Normal View History

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