Cron Settings
The CronSettings
section in appsettings.json
defines how frequently the system checks for auctions that need to be started or ended. This is based on standard cron expressions, allowing fine-grained control over scheduling behavior.
Default Configuration
"CronSettings": {
"StartAuctions": "* * * * *",
"EndAuctions": "* * * * *"
}