1
0
Fork 0
mirror of synced 2024-07-09 00:16:13 +12:00
appwrite/app/config/runtimes.php

15 lines
339 B
PHP
Raw Normal View History

2021-04-21 23:02:54 +12:00
<?php
use Utopia\App;
use Appwrite\Runtimes\Runtimes;
/**
* List of Appwrite Cloud Functions supported runtimes
*/
2021-04-22 21:26:10 +12:00
$runtimes = new Runtimes();
2021-04-21 23:02:54 +12:00
2021-04-30 03:08:59 +12:00
$allowList = empty(App::getEnv('_APP_FUNCTIONS_RUNTIMES')) ? [] : \explode(',', App::getEnv('_APP_FUNCTIONS_RUNTIMES'));
2021-04-21 23:02:54 +12:00
2021-04-23 20:40:45 +12:00
$runtimes = $runtimes->getAll(filter: $allowList);
2021-04-21 23:02:54 +12:00
return $runtimes;