diff --git a/wrangler.toml b/wrangler.toml index 72c76f1..2a88b3d 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -3,6 +3,10 @@ main = "build/worker/shim.mjs" # See https://developers.cloudflare.com/workers/configuration/compatibility-dates/#compatibility-flags for latest compatibility_date = "2022-04-05" +[triggers] +# Run every minute +crons = ["* * * * *"] + [build] command = "cargo install -q worker-build && worker-build --release"