Updates apps automatically
The app is still under development, so it’s time for you to get involved! 👩💻
The app will register a background job that runs once an hour. Depending on the configuration, it will update all, some or none of the upgradable apps.
The app configuration is specified via config/config.php
.
'unattended_upgrades' => [
// your preferences
],
You can set a time window between which the upgrade is allowed.
'unattended_upgrades' => [
'maintenance_window' => [
'start' => '06:00',
'end' => '08:00',
],
],
If you know that an app has questionable QA policies you may want to exclude it from the automated upgrade to save yourself from random fire fighting.
'unattended_upgrades' => [
'blocked' => [
'unattended_upgrades',
],
],
If you're feeling like the automated upgrades of every app are too much risk for you, you may pick the cherries and only allow certain apps.
'unattended_upgrades' => [
'allowed' => [
'mail',
],
],
Commonly asked questions.
No, this app is an experiment. However, if you like living on the edge you may of course deploy the app anyway.