Skip to content

Commit

Permalink
chore: update cron schedule to run once daily instead of every second (
Browse files Browse the repository at this point in the history
…Codehagen#192)

* chore: update cron schedule to run once daily instead of every second

* chore: comment out CRON_SECRET in server and runtimeEnv configuration

The CRON_SECRET environment variable is no longer needed and has been commented out in both the server and runtimeEnv configurations.

* fix: uncomment CRON_SECRET in server env configuration and runtimeEnv to utilize the value from process.env
  • Loading branch information
Codehagen authored Mar 4, 2024
1 parent dccec03 commit 86bc586
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"crons": [
{
"path": "/api/cron/update-integrations",
"schedule": "0 2 * * * *"
"schedule": "0 2 * * *"
},
{
"path": "/api/cron/update-bank-account-data",
"schedule": "0 2 * * * *"
"schedule": "0 2 * * *"
}
]
}

0 comments on commit 86bc586

Please sign in to comment.