Configure the panel application settings.
warden --task=application:application
| Option | Value | Description |
|---|---|---|
--environment |
<production|development> | The mode of the application. |
--ui_theme |
<string> | The theme to use for the extension. Themes: aquamarine, bright-future, cherry-dessert, default, eco, heavy-metal, obsidian, onyx, raspberry, sunny-day |
--locale |
<string> | The default locale of the application. Locales: en-us, ca-es, cs-cz, da-dk, de-de, el-gr, es-es, fi-fi, fr-fr, hu-hu, id-id, it-it, ja-jp, ko-kr, ms-my, nb-no, nl-nl, pl-pl, pt-br, pt-pt, ro-ro, ru-ru, sv-se, th-th, tl-ph, tr-tr, uk-ua, vi-vn, zh-chs, zh-cht |
--grid_rows |
<10|25|50|100|500|1000> | The default number of rows shown when viewing a grid. |
--file_dataset_limit |
<5000|10000|20000|40000|60000|80000> | The default data limit for file based data sets. |
--no_frames_action |
<redirect|show_notice|do_nothing> | The action to take when the application is not loaded within its frameset. |
--dashboard_refresh |
<0|30|90|180|240|480|600|900> | How often to refresh the dashboard (in seconds). |
--time_format |
<12|24> | The time format to use when displaying log information. |
--auto_update_interval |
<disabled|weekly|monthly> | How often to do application updates. |
--auto_update_hour |
<0-23> | The hour of day to do application updates. |
--auto_update_day_of_week |
<0-7> | The day of week to do application updates (weekly interval). |
--auto_update_day_of_month |
<1-31> | The day of the month to do application updates (monthly interval). |
--trusted_hosts |
<string1,string2> | The trusted hostnames allowed to access the extension. |
--trusted_hosts_add |
<1|0> | Add a single entry to trusted_hosts. |
--trusted_hosts_del |
<1|0> | Remove a single entry from trusted_hosts. |
--default |
<1|0> | Reset all settings to their default values. |
--default_option |
<1|0> | Reset a specific setting to its default value. |
// set the dashboard_refresh
warden --task=application:application --dashboard_refresh=480
// reset the dashboard_refresh back to its default value
warden --task=application:application --default_option=dashboard_refresh --reload=yes
// reset all settings to their default values
warden --task=application:application --default=yes --reload=yes