1
0
Fork 0
mirror of synced 2024-09-29 08:51:28 +13:00

Update _APP_FUNCTIONS_RUNTIMES to fix typo and clarify description

This commit is contained in:
Vincent (Wen Yu) Ge 2022-06-27 20:03:51 +00:00
parent 2e92ad9e51
commit 60ad401f0e

View file

@ -677,7 +677,7 @@ return [
],
[
'name' => '_APP_FUNCTIONS_RUNTIMES',
'description' => "This option allows you to limit the available environments for cloud functions. This option is very useful for low-cost servers to safe disk space.\n\nTo enable/activate this option, pass a list of allowed environments separated by a comma.\n\nCurrently, supported environments are: " . \implode(', ', \array_keys(Config::getParam('runtimes'))),
'description' => "This option allows you to enable or disable runtime environments for cloud functions. Disable unused runtimes to save disk space.\n\nTo enable cloud function runtimes, pass a list of enabled environments separated by a comma.\n\nCurrently, supported environments are: " . \implode(', ', \array_keys(Config::getParam('runtimes'))),
'introduction' => '0.8.0',
'default' => 'node-16.0,php-8.0,python-3.9,ruby-3.0',
'required' => false,