1
0
Fork 0
mirror of synced 2024-07-06 23:21:05 +12:00
appwrite/app/config/runtimes-v2.php

17 lines
359 B
PHP
Raw Permalink Normal View History

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