how to setup cron jobs in ionos for each minute to run
I have a laravel app hosted on ionos web server.
I have set the route for the schedule to run
Route::get('/run-currency-update', function () {
Log::info('Currency update command triggered');
Artisan::call('CurrencyUpdate:auto');
return response()->json(['status' => 'Currency update command triggered']);
});
In the cron job manager, there's only daily and hour selection. I want this route to be in get request each minute.
How can I do that with ionos?
I created it to run 4 times daily. But I need it to run every minute.