1
0
Fork 0
mirror of synced 2024-06-26 18:20:43 +12:00

feat: add description of new env variables

This commit is contained in:
Christy Jacob 2021-01-20 20:31:08 +05:30
parent 462bae6d3f
commit e85fc0282e

View file

@ -357,13 +357,29 @@ return [
'description' => '',
'variables' => [
[
'name' => '_APP_MAINTENANCE_INTERVAL',
'description' => 'Interval value containing the number of seconds that the Appwrite maintenance process should wait before executing system cleanups and optimizations. The default value is 86400 seconds (1 day).',
'name' => '_APP_MAINTENANCE_EXECUTION_LOG_RETENTION',
'description' => 'Interval value containing the number of seconds that the Appwrite maintenance process should wait before cleaning up the execution logs. The default value is 1209600 seconds (14 days).',
'introduction' => '0.7.0',
'default' => '1209600',
'required' => false,
'question' => '',
],
[
'name' => '_APP_MAINTENANCE_AUDIT_LOG_RETENTION',
'description' => 'Interval value containing the number of seconds that the Appwrite maintenance process should wait before cleaning up the audit logs. The default value is 1209600 seconds (14 days).',
'introduction' => '0.7.0',
'default' => '1209600',
'required' => false,
'question' => '',
],
[
'name' => '_APP_MAINTENANCE_ABUSE_LOG_RETENTION',
'description' => 'Interval value containing the number of seconds that the Appwrite maintenance process should wait before cleaning up the abuse logs. The default value is 86400 seconds (1 day).',
'introduction' => '0.7.0',
'default' => '86400',
'required' => false,
'question' => '',
],
]
],
],
],