@imatbagjagumilar If you still want to try this, the easiest way I can think of to accomplish these steps are as follows:
In the cloudron portal navigate to System > Updates
Now you should see the current update schedule and an edit hyperlink on the right to make changes to it
Click Edit
Take note of what your settings are currently as you will likely want to change them back after your app has been fully updated
Make a change, like adding an additional hour of the day, but don't click save
Press F12 to open the developer tools of your browser (I used a chrome based browser)
Navigate to the network tab on in the developer tools
Go back to the page and click Save
Go back to Developer Tools network tab and you will now see two requests that have a name that starts with autoupdate_config
Right click on the first one (it is the one that did a POST request), Navigate in the menu to Copy, and then click Copy as fetch
Now in the developer tools click on the console tab and Paste in what you copied
You should now have something like the following
fetch("https://SomeDomain.com/api/v1/updater/autoupdate_config?access_token=SomeToken", {
"headers": {
"accept": "*/*",
"accept-language": "en-US,en;q=0.9",
"cache-control": "no-cache",
"content-type": "application/json",
"pragma": "no-cache",
"priority": "u=1, i",
"sec-ch-ua": "\"Not;A=Brand\";v=\"8\", \"Chromium\";v=\"150\", \"Microsoft Edge\";v=\"150\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": "\"Windows\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin"
},
"referrer": "https://SomeDomain.com/",
"body": "{\"schedule\":\"00 00 0,1,5,6,7,20,21,2 * * *\",\"policy\":\"platform_and_apps\"}",
"method": "POST",
"mode": "cors",
"credentials": "include"
});
Edit the line "body": "{\"schedule\":\"00 00 0,1,5,6,7,20,21,2 * * *\",\"policy\":\"platform_and_apps\"}", to be "body": "{\"schedule\":\"*/1 * * * *\",\"policy\":\"platform_and_apps\"}",
In the console go to the end of what you pasted and press enter to run it
Now if you look at the Updates cloudron page it should say it is doing updates Every day @ hourly which is the fastest that it can recognize but in reality it will be running every minute
After your fully updated, go back to the Updates screen and change it back to whatever update schedule you want.